Skip to content

Commit f6a89da

Browse files
chore(release): 0.10.3
1 parent 82da723 commit f6a89da

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Release Notes
22
---
33

4+
## [0.10.3](https://github.com/AlertaDengue/PySUS/compare/0.10.2...0.10.3) (2023-10-19)
5+
6+
7+
### Bug Fixes
8+
9+
* **FTP:** remove DBF from content if DBC is present ([#168](https://github.com/AlertaDengue/PySUS/issues/168)) ([82da723](https://github.com/AlertaDengue/PySUS/commit/82da723ce35d081899bbd3c90a353beedae6f2a1))
10+
411
## [0.10.2](https://github.com/AlertaDengue/PySUS/compare/0.10.1...0.10.2) (2023-09-25)
512

613

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pysus"
3-
version = "0.10.2" # changed by semantic-release
3+
version = "0.10.3" # 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

+1-1
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.2" # changed by semantic-release
12+
return "0.10.3" # changed by semantic-release
1313

1414

1515
version: str = get_version()

0 commit comments

Comments
 (0)