diff --git a/CHANGELOG.md b/CHANGELOG.md index eb77a28..85ae7d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [0.10.1](https://github.com/AlertaDengue/PySUS/compare/0.10.0...0.10.1) (2023-09-21) + + +### Bug Fixes + +* **sia:** handles files with final 'a', 'b' and 'c' ([#162](https://github.com/AlertaDengue/PySUS/issues/162)) ([2d8cfb2](https://github.com/AlertaDengue/PySUS/commit/2d8cfb27aae2a50ac836804ceacb88db6143134e)) + ## [0.10.0](https://github.com/AlertaDengue/PySUS/compare/0.9.4...0.10.0) (2023-09-19) diff --git a/pyproject.toml b/pyproject.toml index b7b8e85..cfc981a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.10.0" # changed by semantic-release +version = "0.10.1" # 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 2221ea9..d48789e 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.10.0" # changed by semantic-release + return "0.10.1" # changed by semantic-release version: str = get_version()