diff --git a/README.md b/README.md index 4196a5a..41e02b0 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,7 @@ Running tox will install hooks into the .tox directory. Keep this in my if you a TODO: Add a cleanup function to undo this. # Release Notes + * 1.4.99: Added `trustdir` which adds a directory for OS security scanning exclusion, making builds faster. * 1.4.98: Fixed `pull --all` to handle missing repos between remote and local. * 1.4.97: More improvements to `vid2mp3` - auto overwrite and auto wave format. * 1.4.96: `vid2mp3` now includes audio clipping and save to wave format. diff --git a/src/zcmds/version.py b/src/zcmds/version.py index 1741b0f..a317386 100644 --- a/src/zcmds/version.py +++ b/src/zcmds/version.py @@ -1,5 +1,5 @@ """Just holds the version for the app""" # Also change version in pyproject.toml -VERSION = "1.4.98" # pylint: disable=R0801 +VERSION = "1.4.99" # pylint: disable=R0801 __version__ = VERSION