diff --git a/CHANGELOG.md b/CHANGELOG.md index eed73434..2cbfdf4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v2.10.0 (2023-07-22) + +### Feat + +- **ci**: use a Github Repository Variable `DISABLE_PIP_AUDIT` to control running `pip-audit` in CI (#551) + +### Fix + +- **test**: fail pytest if an unraisable/unhandled thread exception was detected during the execution of a test (#576) +- **deps**: temporarily pin typing-extensions deps, to avoid breaking the sphinxnotes-markdown-builder package (#552) + ## v2.9.0 (2023-05-21) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 093186f0..e701ef71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,7 +100,7 @@ version_files = [ "src/package/__init__.py:__version__", ] major_version_zero = false -version = "2.9.0" +version = "2.10.0" # https://github.com/pytest-dev/pytest-cov diff --git a/src/package/__init__.py b/src/package/__init__.py index 25ca0ba6..7c42d8c9 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.9.0" +__version__ = "2.10.0"