From 583175acefb8d7b60034f3f51abdd53c5cb844d1 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 28 Mar 2023 18:41:15 +0000 Subject: [PATCH] chore(release): 0.9.0 --- CHANGELOG.md | 18 ++++++++++++++++++ pyproject.toml | 2 +- pysus/__init__.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 457c28d9..cadd4eab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ Release Notes --- +## [0.9.0](https://github.com/AlertaDengue/PySUS/compare/0.8.0...0.9.0) (2023-03-28) + + +### Features + +* **sinan:** add more parsed columns to final dataframe ([cc653f0](https://github.com/AlertaDengue/PySUS/commit/cc653f0dfc4793a50ed5b76d1ed40520ae4e75f9)) + + +### Bug Fixes + +* **notebooks:** update notebooks ([12dbb16](https://github.com/AlertaDengue/PySUS/commit/12dbb16e24208f7c24b0f790259d55bcad3b4562)) +* **notebook:** update download references in notebooks ([3682fe6](https://github.com/AlertaDengue/PySUS/commit/3682fe61be27235c806ec90112157b0b366bb4af)) + + +### Performance Improvements + +* **sinan:** remove unnecessary cwd's in FTP_SINAN ([#123](https://github.com/AlertaDengue/PySUS/issues/123)) ([5199685](https://github.com/AlertaDengue/PySUS/commit/519968537c6493c19e65de0e9e1856c47850e4dd)) + ## [0.8.0](https://github.com/AlertaDengue/PySUS/compare/0.7.0...0.8.0) (2023-03-14) diff --git a/pyproject.toml b/pyproject.toml index f6b99d88..c58162e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.8.0" # changed by semantic-release +version = "0.9.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 6ed342bc..73bb7776 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.8.0" # changed by semantic-release + return "0.9.0" # changed by semantic-release version: str = get_version()