Skip to content

Commit 82d228a

Browse files
committed
chore: bump version to 4.0.3
1 parent 75f8fd3 commit 82d228a

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [4.0.3] - 2025-06-27
4+
5+
### Added
6+
- Major refactor with enhanced Chain architecture
7+
- Timezone-aware timestamps (Python 3.13+ compatibility)
8+
- Comprehensive testing infrastructure (236 tests)
9+
10+
### Changed
11+
- Migrated from `datetime.utcnow()` to `datetime.now(timezone.utc)`
12+
- Streamlined connection handlers with proper error handling
13+
- Enhanced type safety and consistency across modules
14+
15+
### Removed
16+
- Obsolete documentation and example files
17+
- Duplicate utility modules and backup files
18+
19+
### Fixed
20+
- DateTime deprecation warnings
21+
- Test failures related to timezone handling
22+
- AttributeError issues with datetime.UTC
23+
24+
325
## [4.0.2] - 2025-06-27
426
### Fixed
527
- Export HttpListener and TcpListener in public API (previously only BaseListener was available)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "modulink-py"
7-
version = "4.0.2"
7+
version = "4.0.3"
88
description = "A Python library for building modular applications with unified triggers"
99
readme = "README.md"
1010
requires-python = ">=3.8"
@@ -140,7 +140,7 @@ exclude_lines = [
140140

141141
# MyPy configuration
142142
[tool.mypy]
143-
python_version = "3.8"
143+
python_version = "4.0.3"
144144
warn_return_any = true
145145
warn_unused_configs = true
146146
disallow_untyped_defs = true

0 commit comments

Comments
 (0)