From fa5429cc2c054e8339106ea524f9f00f2f3eab7e Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 16 Apr 2024 13:34:28 +0000 Subject: [PATCH] chore(release): 0.14.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 1bd2926..6b81da2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [0.14.0](https://github.com/AlertaDengue/PySUS/compare/0.13.1...0.14.0) (2024-04-16) + + +### Features + +* **IBGE:** continue work of AlertaDengue [#192](https://github.com/AlertaDengue/PySUS/issues/192) ([#193](https://github.com/AlertaDengue/PySUS/issues/193)) ([b3540d7](https://github.com/AlertaDengue/PySUS/commit/b3540d71b528b2eb2c57f3521c1032a341d8a8ef)) + ## [0.13.1](https://github.com/AlertaDengue/PySUS/compare/0.13.0...0.13.1) (2024-01-12) diff --git a/pyproject.toml b/pyproject.toml index d385d40..1b9dde2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.13.1" # changed by semantic-release +version = "0.14.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 f562cfd..0a6e5b3 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.13.1" # changed by semantic-release + return "0.14.0" # changed by semantic-release version: str = get_version()