diff --git a/CHANGELOG.md b/CHANGELOG.md index fbb6177b3..044245164 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.4.1] - 2023-1-13 + ### Bug fixes - Fixed PyTA contract checking for method calls when running modules in PyCharm using the "Run File in Python Console" action. diff --git a/python_ta/__init__.py b/python_ta/__init__.py index 983f55381..484319d74 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -14,7 +14,7 @@ import python_ta python_ta.check_all() """ -__version__ = "2.4.1.dev" # Version number +__version__ = "2.4.1" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins