From 4952a63e20451ca1867e7f9ca8ec552476a114eb Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 5 Dec 2023 15:27:10 +0000 Subject: [PATCH] chore(release): 0.11.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 8ef9d7b..684c7de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Release Notes --- +## [0.11.0](https://github.com/AlertaDengue/PySUS/compare/0.10.3...0.11.0) (2023-12-05) + + +### Features + +* Introduce 'data_sources' function to list supported databases ([#177](https://github.com/AlertaDengue/PySUS/issues/177)) ([5d4e3b2](https://github.com/AlertaDengue/PySUS/commit/5d4e3b2964d48e40b1fe48f3d7f80c951c9c654b)) + + +### Bug Fixes + +* Separate dependencies into groups for Poetry installation ([#175](https://github.com/AlertaDengue/PySUS/issues/175)) ([4e707bf](https://github.com/AlertaDengue/PySUS/commit/4e707bfb6dba22ea67d26e4b811049562eed2930)) + ## [0.10.3](https://github.com/AlertaDengue/PySUS/compare/0.10.2...0.10.3) (2023-10-19) diff --git a/pyproject.toml b/pyproject.toml index 250d006..7c9d1b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.10.3" # changed by semantic-release +version = "0.11.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 acd4faf..546ef56 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.3" # changed by semantic-release + return "0.11.0" # changed by semantic-release version: str = get_version()