Skip to content

Commit bfde28f

Browse files
committed
chore: bump version to 0.3.5 and add changelog entry
1 parent f2d3a5f commit bfde28f

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
---
99

10+
## [0.3.5] - 2026-07-07
11+
12+
### Changed
13+
14+
- Modernized type hints to Python 3.10+ syntax throughout: `Optional[X]` to `X | None`, `Union[X, Y]` to `X | Y`, `List[X]` to `list[X]`, `Dict[K, V]` to `dict[K, V]`. `AsyncGenerator`, `Callable`, and `Awaitable` moved from `typing` to `collections.abc`. No functional changes.
15+
- Added `target-version = "py310"` and the `UP` ruleset to ruff config, enforcing the modernized syntax going forward.
16+
17+
---
18+
1019
## [0.3.4] - 2026-06-29
1120

1221
### Changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "postmark-python"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
description = "The Official Postmark Python SDK."
55
authors = [
66
{ name = "Greg Svoboda", email = "gsvoboda@activecampaign.com" },

0 commit comments

Comments
 (0)