Skip to content

Commit 4952a63

Browse files
chore(release): 0.11.0
1 parent 5d4e3b2 commit 4952a63

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

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

4+
## [0.11.0](https://github.com/AlertaDengue/PySUS/compare/0.10.3...0.11.0) (2023-12-05)
5+
6+
7+
### Features
8+
9+
* Introduce 'data_sources' function to list supported databases ([#177](https://github.com/AlertaDengue/PySUS/issues/177)) ([5d4e3b2](https://github.com/AlertaDengue/PySUS/commit/5d4e3b2964d48e40b1fe48f3d7f80c951c9c654b))
10+
11+
12+
### Bug Fixes
13+
14+
* Separate dependencies into groups for Poetry installation ([#175](https://github.com/AlertaDengue/PySUS/issues/175)) ([4e707bf](https://github.com/AlertaDengue/PySUS/commit/4e707bfb6dba22ea67d26e4b811049562eed2930))
15+
416
## [0.10.3](https://github.com/AlertaDengue/PySUS/compare/0.10.2...0.10.3) (2023-10-19)
517

618

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.10.3" # changed by semantic-release
3+
version = "0.11.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.10.3" # changed by semantic-release
12+
return "0.11.0" # changed by semantic-release
1313

1414

1515
version: str = get_version()

0 commit comments

Comments
 (0)