From 2ac195d5557a60c042732ff823276f2bc059f78f Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 6 Feb 2023 11:37:27 +0000 Subject: [PATCH] chore(release): 0.7.0 --- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 2 +- pysus/__init__.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29b..23cf0771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +Release Notes +--- + +## [0.7.0](https://github.com/AlertaDengue/PySUS/compare/v0.6.4...0.7.0) (2023-02-06) + + +### Features + +* **semantic-release:** add semantic release to the project ([#114](https://github.com/AlertaDengue/PySUS/issues/114)) ([b079089](https://github.com/AlertaDengue/PySUS/commit/b0790898785666f588e716e02acdcc536d06c2e5)) + + +### Bug Fixes + +* **sinan:** remove hardcoded data path when extracting from pysus ([#113](https://github.com/AlertaDengue/PySUS/issues/113)) ([c56d2b1](https://github.com/AlertaDengue/PySUS/commit/c56d2b1a0ecf4e0d8efa4ea76e8cae3decc788d5)) +* **sm-release:** fixing wrong branch on semantic-release ([#115](https://github.com/AlertaDengue/PySUS/issues/115)) ([c22f13c](https://github.com/AlertaDengue/PySUS/commit/c22f13c9c12fa3df45045db6b9d346318a2f25ef)) diff --git a/pyproject.toml b/pyproject.toml index 80216f2f..5771f0c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysus" -version = "0.6.4" # changed by semantic-release +version = "0.7.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 f3c7901f..7a338f1a 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.6.4" # changed by semantic-release + return "0.7.0" # changed by semantic-release version: str = get_version()