diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d954686..df3e03fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v2.3.1 (2022-08-26) + +### Fix + +- **ci**: separate artifacts for release and debugging (#297) (#298) + ## v2.3.0 (2022-08-26) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 81120600..afd3dc82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,7 +90,7 @@ update_changelog_on_bump = true version_files = [ "src/package/__init__.py:__version__", ] -version = "2.3.0" +version = "2.3.1" # https://github.com/pytest-dev/pytest-cov diff --git a/src/package/__init__.py b/src/package/__init__.py index 96ed4a0f..d5785a7e 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.3.0" +__version__ = "2.3.1"