diff --git a/CHANGELOG.md b/CHANGELOG.md index 57a726bb..11349fe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## v2.12.0 (2024-01-20) + +### Feat + +- **ci**: switch from building the SLSA provenance generator to using the pre-built version to improve runtime performance (#667) +- require pylint v3 and add a slew of optional plugins (#658) +- run doctest as part of running tests, which collects doctests from both the package’s doc strings and the package documentation (#637) +- add perflint to find performance anti-patterns (#675) + +### Fix + +- **ci**: workflow that syncs a repository with this template had multiple problems on patch generation and pushing; also, it can now be triggered via Github UI (#670) +- always fail tests when runtime warnings were raised (#668) +- change git hook to check for large files on commit, instead of push (#664) + ## v2.11.0 (2023-11-22) ### Feat diff --git a/pyproject.toml b/pyproject.toml index da9d1d1a..892bfe8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,7 +99,7 @@ version_files = [ "src/package/__init__.py:__version__", ] major_version_zero = false -version = "2.11.0" +version = "2.12.0" # https://github.com/pytest-dev/pytest-cov diff --git a/src/package/__init__.py b/src/package/__init__.py index 4778f21f..6773ef93 100644 --- a/src/package/__init__.py +++ b/src/package/__init__.py @@ -6,4 +6,4 @@ # The version of this package. There's no comprehensive, official list of other # magic constants, so we stick with this one only for now. See also this conversation: # https://stackoverflow.com/questions/38344848/is-there-a-comprehensive-table-of-pythons-magic-constants -__version__ = "2.11.0" +__version__ = "2.12.0"