From c7cc2a0a44e099e6e9375af8d7ec34d35f4bd4de Mon Sep 17 00:00:00 2001 From: David Liu Date: Wed, 21 Dec 2022 13:29:07 -0500 Subject: [PATCH] release: Release v2.4.0! --- CHANGELOG.md | 2 ++ python_ta/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 571963a53..f8f8156de 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.0] - 2022-12-21 + ### Enhancements - `unnecessary_indexing_checker` has now been extended to check comprehensions in addition to for loops. diff --git a/python_ta/__init__.py b/python_ta/__init__.py index e0123900c..4c4721da3 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -14,7 +14,7 @@ import python_ta python_ta.check_all() """ -__version__ = "2.3.4.dev" # Version number +__version__ = "2.4.0" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins