From 241410f5629981083d1037d8a3f0ba3f50b7a1eb Mon Sep 17 00:00:00 2001 From: David Liu Date: Mon, 19 Aug 2024 22:57:55 -0400 Subject: [PATCH] Release v2.8.1! --- CHANGELOG.md | 8 ++++++-- python_ta/__init__.py | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index efec8b211..1d572db5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,10 +13,14 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### 🐛 Bug fixes -- Fix loading of setendings plugin when z3-solver is not installed - ### 🔧 Internal changes +## [2.8.1] - 2024-08-19 + +### 🐛 Bug fixes + +- Fix loading of setendings plugin when z3-solver is not installed + ## [2.8.0] - 2024-08-19 ### ✨ Enhancements diff --git a/python_ta/__init__.py b/python_ta/__init__.py index 2b628e6e7..91cf9e1d0 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -15,7 +15,7 @@ python_ta.check_all() """ -__version__ = "2.8.0" # Version number +__version__ = "2.8.1" # Version number # First, remove underscore from builtins if it has been bound in the REPL. # Must appear before other imports from pylint/python_ta.