Skip to content

Commit

Permalink
Release v2.8.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
david-yz-liu committed Aug 20, 2024
1 parent d127200 commit 9f6c717
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '''
Expand Down
2 changes: 1 addition & 1 deletion python_ta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9f6c717

Please sign in to comment.