From 92b86565b015e5b36e18adcea21b0c41c4997ce5 Mon Sep 17 00:00:00 2001 From: jenstroeger Date: Sat, 20 Jan 2024 08:55:57 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20release=202.11.0=20=E2=86=92=202.12.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automatically generated by Commitizen. --- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 2 +- src/package/__init__.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) 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"