Skip to content

Commit

Permalink
6.1.0 prep
Browse files Browse the repository at this point in the history
  • Loading branch information
seb-b committed May 24, 2024
1 parent 5ea20e4 commit fd684ff
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGELOG
=========

6.1.0
-----

- Groundwork for pluggable backends added
- Video width/height now stored against the video model
- Removed enumchoicefield as a requirement (rip)

6.0.0
-----

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="wagtailvideos",
version="6.0.0",
version="6.1.0",
description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme,
author="Neon Jungle",
Expand Down
2 changes: 1 addition & 1 deletion wagtailvideos/transcoders/ffmpeg/ffmpeg.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import datetime
import json
import logging
import os
import os.path
import shutil
import subprocess
import tempfile
import json
from typing import List, Optional, TypedDict

from django.conf import settings
Expand Down

0 comments on commit fd684ff

Please sign in to comment.