diff --git a/CHANGELOG.md b/CHANGELOG.md index bb0cbdc..2f8c6d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [1.2.0](https://github.com/AlertaDengue/epi-scanner/compare/1.1.0...1.2.0) (2023-11-23) + + +### Features + +* Improve episcanner deploy ([#38](https://github.com/AlertaDengue/epi-scanner/issues/38)) ([c3f3d39](https://github.com/AlertaDengue/epi-scanner/commit/c3f3d3960166102096ba300d474dec4772913919)) + ## [1.1.0](https://github.com/AlertaDengue/epi-scanner/compare/1.0.0...1.1.0) (2023-05-15) diff --git a/epi_scanner/__init__.py b/epi_scanner/__init__.py index 67a957f..225b3fd 100644 --- a/epi_scanner/__init__.py +++ b/epi_scanner/__init__.py @@ -6,7 +6,7 @@ def get_version() -> str: try: return importlib_metadata.version(__name__) except importlib_metadata.PackageNotFoundError: # pragma: no cover - return "1.1.0" # changed by semantic-release + return "1.2.0" # changed by semantic-release version: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index d585f68..fa48bd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Episcanner" -version = "1.1.0" # changed by semantic-release +version = "1.2.0" # changed by semantic-release description = "Dashboard quickstart template" authors = ["Flávio Codeço Coelho "] license = "MIT"