Skip to content

Commit 008a4bb

Browse files
chore(release): 1.0.0
1 parent c6008f4 commit 008a4bb

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

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

4+
## [1.0.0](https://github.com/AlertaDengue/PySUS/compare/0.15.0...1.0.0) (2025-06-11)
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **package:** release for py3.13 (#223)
9+
10+
### Features
11+
12+
* **package:** release for py3.13 ([#223](https://github.com/AlertaDengue/PySUS/issues/223)) ([c6008f4](https://github.com/AlertaDengue/PySUS/commit/c6008f41b55bc65e98b45adcbb6e8f304732928e))
13+
414
## [0.15.0](https://github.com/AlertaDengue/PySUS/compare/0.14.3...0.15.0) (2024-12-03)
515

616
### Features

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.15.0" # changed by semantic-release
3+
version = "1.0.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
@@ -10,7 +10,7 @@ def get_version() -> str:
1010
try:
1111
return importlib_metadata.version(__name__)
1212
except importlib_metadata.PackageNotFoundError: # pragma: no cover
13-
return "0.15.0" # changed by semantic-release
13+
return "1.0.0" # changed by semantic-release
1414

1515

1616
version: str = get_version()

0 commit comments

Comments
 (0)