diff --git a/CHANGELOG.md b/CHANGELOG.md index 85847436..682d90fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [0.9.3](https://github.com/AlertaDengue/PySUS/compare/0.9.2...0.9.3) (2023-06-06) + + +### Bug Fixes + +* **docs:** pt and pt_BR build ([12b21de](https://github.com/AlertaDengue/PySUS/commit/12b21de78a6220ca8d158a39ccd6f152f5b343e0)) + ## [0.9.2](https://github.com/AlertaDengue/PySUS/compare/0.9.1...0.9.2) (2023-04-20) diff --git a/pyproject.toml b/pyproject.toml index c097b4cd..a1e6155f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.9.2" # changed by semantic-release +version = "0.9.3" # 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 30d6e6c7..4b596b9f 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.9.2" # changed by semantic-release + return "0.9.3" # changed by semantic-release version: str = get_version()