diff --git a/CHANGELOG.md b/CHANGELOG.md index f1061e59f..c4e1c1632 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.7.0] - 2024-12-14 + ### Enhancements - Added new configuration option `use-pyta-error-messages` to let users choose whether PythonTA should overwrite pylint's error messages. diff --git a/python_ta/__init__.py b/python_ta/__init__.py index edcaaf913..0c27dc4d3 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -14,7 +14,7 @@ import python_ta python_ta.check_all() """ -__version__ = "2.6.5.dev" # Version number +__version__ = "2.7.0" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins