Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 2.6.4 release into master #980

Merged
merged 9 commits into from
Nov 10, 2023
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion python_ta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading