From 43a7f55418f120c8ca8f8aaaf1926a15eb315347 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 5 Dec 2023 20:12:11 +0000 Subject: [PATCH] chore(release): 0.12.0 --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- pysus/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 684c7de..8697303 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [0.12.0](https://github.com/AlertaDengue/PySUS/compare/0.11.0...0.12.0) (2023-12-05) + + +### Features + +* **deps:** Update Python version constraints to support 3.10 and 3.11 ([#179](https://github.com/AlertaDengue/PySUS/issues/179)) ([ba8b7e5](https://github.com/AlertaDengue/PySUS/commit/ba8b7e50b2dade66e6d0e4b7baaa2962f1217971)) + ## [0.11.0](https://github.com/AlertaDengue/PySUS/compare/0.10.3...0.11.0) (2023-12-05) diff --git a/pyproject.toml b/pyproject.toml index 36dafd4..7f85559 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.11.0" # changed by semantic-release +version = "0.12.0" # changed by semantic-release description = "Tools for dealing with Brazil's Public health data" authors = ["Flavio Codeco Coelho "] license = "GPL" diff --git a/pysus/__init__.py b/pysus/__init__.py index 546ef56..af59b5d 100644 --- a/pysus/__init__.py +++ b/pysus/__init__.py @@ -9,7 +9,7 @@ def get_version() -> str: try: return importlib_metadata.version(__name__) except importlib_metadata.PackageNotFoundError: # pragma: no cover - return "0.11.0" # changed by semantic-release + return "0.12.0" # changed by semantic-release version: str = get_version()