From 9f6c71778a5b723759c54787be17d18fb2264046 Mon Sep 17 00:00:00 2001 From: David Liu Date: Mon, 19 Aug 2024 22:08:31 -0400 Subject: [PATCH] Release v2.8.0! --- CHANGELOG.md | 14 ++++++++++++-- pyproject.toml | 2 +- python_ta/__init__.py | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d37c344c..35a3e6ac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### ✨ Enhancements +### 💫 New checkers + +### 🐛 Bug fixes + +### 🔧 Internal changes + +## [2.8.0] - 2024-08-19 + +### ✨ Enhancements + - Add new boolean configuration `allow-local-imports` to allow for local imports - Extended the `snasphot` function to include the relevant variables defined at the top level (global variables). - Include the pycodestyle error code to the error message for PEP8 style errors @@ -85,7 +95,7 @@ Custom checkers: - Refactored `Z3Visitor` to use `safe_infer()` instead of `inferred()` and added handling of `AstroidError`. - Add `negate` attribute to `CFGEdge` -## [2.7.0] - 2024-12-14 +## [2.7.0] - 2023-12-14 ### ✨ Enhancements @@ -124,7 +134,7 @@ list only contains the Pylint checkers enabled by default in PythonTA. - Remove experimental type inference code. -## [2.6.4] - 2024-11-10 +## [2.6.4] - 2023-11-10 ### 🐛 Bug fixes diff --git a/pyproject.toml b/pyproject.toml index b00f37ede..b740b2dea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,7 +68,7 @@ version = {attr = "python_ta.__version__"} #readme = {file = "README.md", content-type = "text/markdown"} [tool.setuptools.packages.find] -exclude = ["node_modules"] +include = ["python_ta*"] [tool.black] extend-exclude = ''' diff --git a/python_ta/__init__.py b/python_ta/__init__.py index 0a30bee53..2b628e6e7 100644 --- a/python_ta/__init__.py +++ b/python_ta/__init__.py @@ -15,7 +15,7 @@ python_ta.check_all() """ -__version__ = "2.7.1.dev" # Version number +__version__ = "2.8.0" # Version number # First, remove underscore from builtins if it has been bound in the REPL. # Must appear before other imports from pylint/python_ta.