From e9b3f88bab2e39497a71b2efab994b6fc3da3338 Mon Sep 17 00:00:00 2001 From: zackees Date: Fri, 30 Aug 2024 15:08:15 -0700 Subject: [PATCH] Add version 1.4.100 to Release Notes and update version in code --- README.md | 1 + src/zcmds/version.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 41e02b0..002e24e 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.100: Added `-y` to invocation of vidclip static_ffmpeg. * 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. diff --git a/src/zcmds/version.py b/src/zcmds/version.py index a317386..59f3cc3 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.99" # pylint: disable=R0801 +VERSION = "1.4.100" # pylint: disable=R0801 __version__ = VERSION