diff --git a/README.md b/README.md index b10790a43..196f70d7d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Actions Status](https://github.com/wyattblue/auto-editor/workflows/build/badge.svg)](https://github.com/wyattblue/auto-editor/actions) - +

**Auto-Editor** is a command line application for automatically **editing video and audio** by analyzing where sections are silent and cutting them up. diff --git a/auto_editor/__main__.py b/auto_editor/__main__.py index a78834126..d45954272 100755 --- a/auto_editor/__main__.py +++ b/auto_editor/__main__.py @@ -7,7 +7,7 @@ import tempfile from shutil import rmtree -version = '21w05a' +version = '21w05b' def file_type(file: str) -> str: if(not os.path.isfile(file)): diff --git a/resources/version.txt b/resources/version.txt index a674927f5..169dddc95 100644 --- a/resources/version.txt +++ b/resources/version.txt @@ -1 +1 @@ -21w05a \ No newline at end of file +21w05b \ No newline at end of file diff --git a/setup.py b/setup.py index e1d87dfe7..98a409d6a 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools import setup, find_packages def pip_version(): - return '21.5.1' + return '21.5.2' if(sys.argv[-1] == 'publish'): os.system('rm -rf build')