From ef6d0da97c7c28c45d8ae869e1e21b7acb8a3d82 Mon Sep 17 00:00:00 2001 From: David Liu Date: Fri, 13 Jan 2023 17:41:09 -0500 Subject: [PATCH] release: Release v2.4.1! --- CHANGELOG.md | 2 ++ python_ta/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbb6177b3..044245164 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.1] - 2023-1-13 + ### Bug fixes - Fixed PyTA contract checking for method calls when running modules in PyCharm using the "Run File in Python Console" action. diff --git a/python_ta/__init__.py b/python_ta/__init__.py index 983f55381..484319d74 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -14,7 +14,7 @@ import python_ta python_ta.check_all() """ -__version__ = "2.4.1.dev" # Version number +__version__ = "2.4.1" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins