From f6a89dae8c35356875fdab2081bc88ff6b8f4d90 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 19 Oct 2023 19:09:01 +0000 Subject: [PATCH] chore(release): 0.10.3 --- 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 55ec0b1..8ef9d7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [0.10.3](https://github.com/AlertaDengue/PySUS/compare/0.10.2...0.10.3) (2023-10-19) + + +### Bug Fixes + +* **FTP:** remove DBF from content if DBC is present ([#168](https://github.com/AlertaDengue/PySUS/issues/168)) ([82da723](https://github.com/AlertaDengue/PySUS/commit/82da723ce35d081899bbd3c90a353beedae6f2a1)) + ## [0.10.2](https://github.com/AlertaDengue/PySUS/compare/0.10.1...0.10.2) (2023-09-25) diff --git a/pyproject.toml b/pyproject.toml index bbb09a8..9795e94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.10.2" # changed by semantic-release +version = "0.10.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 436f1cb..acd4faf 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.2" # changed by semantic-release + return "0.10.3" # changed by semantic-release version: str = get_version()