Skip to content

Commit 583175a

Browse files
chore(release): 0.9.0
1 parent 5199685 commit 583175a

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Release Notes
22
---
33

4+
## [0.9.0](https://github.com/AlertaDengue/PySUS/compare/0.8.0...0.9.0) (2023-03-28)
5+
6+
7+
### Features
8+
9+
* **sinan:** add more parsed columns to final dataframe ([cc653f0](https://github.com/AlertaDengue/PySUS/commit/cc653f0dfc4793a50ed5b76d1ed40520ae4e75f9))
10+
11+
12+
### Bug Fixes
13+
14+
* **notebooks:** update notebooks ([12dbb16](https://github.com/AlertaDengue/PySUS/commit/12dbb16e24208f7c24b0f790259d55bcad3b4562))
15+
* **notebook:** update download references in notebooks ([3682fe6](https://github.com/AlertaDengue/PySUS/commit/3682fe61be27235c806ec90112157b0b366bb4af))
16+
17+
18+
### Performance Improvements
19+
20+
* **sinan:** remove unnecessary cwd's in FTP_SINAN ([#123](https://github.com/AlertaDengue/PySUS/issues/123)) ([5199685](https://github.com/AlertaDengue/PySUS/commit/519968537c6493c19e65de0e9e1856c47850e4dd))
21+
422
## [0.8.0](https://github.com/AlertaDengue/PySUS/compare/0.7.0...0.8.0) (2023-03-14)
523

624

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.8.0" # changed by semantic-release
3+
version = "0.9.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.8.0" # changed by semantic-release
12+
return "0.9.0" # changed by semantic-release
1313

1414

1515
version: str = get_version()

0 commit comments

Comments
 (0)