diff --git a/README.md b/README.md index 527a774..b3eabb9 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,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.92: `askai` now allows `--check` which asks the AI agent if the last answer was correct. * 1.4.91: `askai` using `exit` will better exit in interactive mode. * 1.4.90: `askai` is upgraded to the latest models. ChatGPT3.5 has been replaced with GPT4o-mini. --advanced is now gpt-4o * 1.4.89: Fixes `vidinfo --full` not being able to parse json with trailing commas. diff --git a/src/zcmds/version.py b/src/zcmds/version.py index 878961c..94a2d87 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.91" # pylint: disable=R0801 +VERSION = "1.4.92" # pylint: disable=R0801 __version__ = VERSION