Skip to content

Commit c0d4296

Browse files
chore(release): 2.0.0
1 parent 711af95 commit c0d4296

3 files changed

Lines changed: 57 additions & 2 deletions

File tree

CHANGELOG.md

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

4+
## [2.0.0](https://github.com/AlertaDengue/PySUS/compare/1.0.1...2.0.0) (2026-05-05)
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* v2
9+
10+
* chore: include a file listing on _impl
11+
12+
* chore: retry downloading catalog if it fail
13+
14+
* tests: include more tests
15+
* version 2.0.0
16+
17+
* remove circular imports
18+
19+
* move individual database files to databases.py
20+
21+
* normalize FileDescription to prepare for ducklake implementation
22+
23+
* start building the dadosgov models to extract & describe the files within the datasets
24+
* refactor local data files; implement groups for pysus dep; async everything
25+
26+
* refactor(ducklake): implement abstract classes on the ducklake api classes
27+
28+
* refactor(ducklake): implement abstract classes on the ducklake api classes
29+
30+
* refactor(ftp): implement base models to ftp api
31+
32+
* finish implementing it on all ftp databases
33+
34+
* include some tests
35+
36+
* update tqdm
37+
38+
* implement interfaces on dadosgov modules
39+
40+
* create a PySUS orchestrator that will be a bridge between remote clients and local files
41+
42+
* clean package/prepare to v2 release; start refining tui
43+
44+
* restric dependency import error only to DBC
45+
46+
* start testing the programatically upload of the files on s3
47+
48+
* fix all the mypy linting errors
49+
50+
* include more tests now that catalog.db is filled
51+
52+
* fix tests
53+
54+
### Features
55+
56+
* include a python API to dados.gov.br API ([#241](https://github.com/AlertaDengue/PySUS/issues/241)) ([f20a1c9](https://github.com/AlertaDengue/PySUS/commit/f20a1c99ef3ad7962ba5366d657a1638b24e3d8d))
57+
* include the simple implementation & update docs ([#256](https://github.com/AlertaDengue/PySUS/issues/256)) ([711af95](https://github.com/AlertaDengue/PySUS/commit/711af95e915b9066ab2b87755657ba7f3be3336e))
58+
459
## [1.0.1](https://github.com/AlertaDengue/PySUS/compare/1.0.0...1.0.1) (2026-02-19)
560

661
### Bug Fixes

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 = "1.0.1" # changed by semantic-release
3+
version = "2.0.0" # changed by semantic-release
44
description = "Tools for dealing with Brazil's Public health data"
55
authors = ["Flavio Codeco Coelho <fccoelho@gmail.com>", "Luã Bida Vacaro <luabidaa@gmail.com>"]
66
license = "GPL"

pysus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_version() -> str:
1717
try:
1818
return importlib_metadata.version(__name__)
1919
except importlib_metadata.PackageNotFoundError: # pragma: no cover
20-
return "1.0.1" # changed by semantic-release"
20+
return "2.0.0" # changed by semantic-release"
2121

2222

2323
version: str = get_version()

0 commit comments

Comments
 (0)