From 376d3305919a8742d5b0e019bd987b94a1e75c9e Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 21 Dec 2023 11:04:15 +0000 Subject: [PATCH] chore(release): 0.13.0 --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- pysus/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8697303..2d477f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Release Notes --- +## [0.13.0](https://github.com/AlertaDengue/PySUS/compare/0.12.0...0.13.0) (2023-12-21) + + +### Features + +* **PNI:** include PNI Database ([#181](https://github.com/AlertaDengue/PySUS/issues/181)) ([67fca92](https://github.com/AlertaDengue/PySUS/commit/67fca920d744f82dc760bf6217746290d15d9c96)) + + +### Bug Fixes + +* Replace applymap with map for pd.DataFrame ([#180](https://github.com/AlertaDengue/PySUS/issues/180)) ([357b7ca](https://github.com/AlertaDengue/PySUS/commit/357b7ca5498dd7030bcf31c42179ef6a197b8f38)) + ## [0.12.0](https://github.com/AlertaDengue/PySUS/compare/0.11.0...0.12.0) (2023-12-05) diff --git a/pyproject.toml b/pyproject.toml index 83c2ffd..70d34bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.12.0" # changed by semantic-release +version = "0.13.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 af59b5d..1e450cf 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.12.0" # changed by semantic-release + return "0.13.0" # changed by semantic-release version: str = get_version()