From 6bed2f3e01ca06f5f3875a56691b4acc8884b4e2 Mon Sep 17 00:00:00 2001 From: David Liu Date: Fri, 22 Sep 2023 14:35:16 -0400 Subject: [PATCH] Release v2.6.2! --- CHANGELOG.md | 2 ++ python_ta/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2e123dee..61177e0e5 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.6.2] - 2023-09-22 + ### Bug fixes - Fix `naming-convention-violation` bug where `_` was considered an invalid variable name. diff --git a/python_ta/__init__.py b/python_ta/__init__.py index 3a907d928..aeca40c21 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.2.dev" # Version number +__version__ = "2.6.2" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins