From 3f86d357382c75114e113200b26eb9f0e498b542 Mon Sep 17 00:00:00 2001 From: David Liu Date: Thu, 9 Dec 2021 19:11:16 -0500 Subject: [PATCH] release: Release v2.2.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 d796fda6f..48348a54e 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.2.0] - 2021-12-09 + ### Enhancements - Added support for postconditions in function docstring. diff --git a/python_ta/__init__.py b/python_ta/__init__.py index 2c016eabf..05d3b0f50 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -14,7 +14,7 @@ import python_ta python_ta.check_all() """ -__version__ = "2.2.0.dev" # Version number +__version__ = "2.2.0" # Version number # First, remove underscore from builtins if it has been bound in the REPL. import builtins