diff --git a/CHANGELOG.md b/CHANGELOG.md index 73bf41ca3..21f569108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +## [2.3.0] - 2022-08-08 + ### Enhancements - Added new command line argument `-v/--version`. User can print out current PythonTA version using `python -m python_ta -v`. diff --git a/python_ta/__init__.py b/python_ta/__init__.py index 6a7957d59..9afc7e7d1 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -14,7 +14,7 @@ import python_ta python_ta.check_all() """ -__version__ = "2.2.1.dev" # Version number +__version__ = "2.3.0" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins