Skip to content

Commit 2ac195d

Browse files
chore(release): 0.7.0
1 parent c22f13c commit 2ac195d

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Release Notes
2+
---
3+
4+
## [0.7.0](https://github.com/AlertaDengue/PySUS/compare/v0.6.4...0.7.0) (2023-02-06)
5+
6+
7+
### Features
8+
9+
* **semantic-release:** add semantic release to the project ([#114](https://github.com/AlertaDengue/PySUS/issues/114)) ([b079089](https://github.com/AlertaDengue/PySUS/commit/b0790898785666f588e716e02acdcc536d06c2e5))
10+
11+
12+
### Bug Fixes
13+
14+
* **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))
15+
* **sm-release:** fixing wrong branch on semantic-release ([#115](https://github.com/AlertaDengue/PySUS/issues/115)) ([c22f13c](https://github.com/AlertaDengue/PySUS/commit/c22f13c9c12fa3df45045db6b9d346318a2f25ef))

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pysus"
3-
version = "0.6.4" # changed by semantic-release
3+
version = "0.7.0" # changed by semantic-release
44
description = "Tools for dealing with Brazil's Public health data"
55
authors = ["Flavio Codeco Coelho <[email protected]>"]
66
license = "GPL"

pysus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def get_version() -> str:
99
try:
1010
return importlib_metadata.version(__name__)
1111
except importlib_metadata.PackageNotFoundError: # pragma: no cover
12-
return "0.6.4" # changed by semantic-release
12+
return "0.7.0" # changed by semantic-release
1313

1414

1515
version: str = get_version()

0 commit comments

Comments
 (0)