diff --git a/CHANGELOG.md b/CHANGELOG.md index a3b534135..35266d8a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,11 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Added new configuration option `use-pyta-error-messages` to let users choose whether PythonTA should overwrite pylint's error messages. - Both PlainReporter and ColorReporter emphasize specific code chunks by using overline characters under any part that is highlighted as ERROR. +## [2.6.4] - 2024-11-10 + ### Bug fixes -- Fixed bug with `invalid-range-index-checker` when variables are used in `range` expressions. +- Fixed bug with `invalid-range-index` when variables are used in `range` expressions. ## [2.6.3] - 2023-10-09 diff --git a/python_ta/__init__.py b/python_ta/__init__.py index bfb5f62e1..2fd8e7d1e 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.4.dev" # Version number +__version__ = "2.6.5.dev" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins