Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
Expand Down
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ and this project adheres to

## [Unreleased]

## [2.0.0] - 2026-03-16

### Changed

- **BREAKING**: Replace `serde` dependency with Python stdlib `dataclasses`.
The `serde` library is unmaintained. All models now use `@dataclass` with a
custom `Model` base class that provides the same `from_dict()`/`to_dict()`
API. `ValidationError` is now exported from `l9format` directly instead of
`serde`.
- Remove `Decimal` custom field class (was a `serde.fields.Instance` subclass).
Decimal serialization/deserialization is now handled internally by the `Model`
base class.

### Infrastructure

- CI: add Python 3.14 to test matrix
- Remove serde-specific mypy overrides from `pyproject.toml`

## [1.4.1] - 2026-03-16

### Infrastructure
Expand Down Expand Up @@ -161,7 +179,8 @@ and this project adheres to

<!-- Version links -->

[Unreleased]: https://github.com/LeakIX/l9format-python/compare/1.4.1...HEAD
[Unreleased]: https://github.com/LeakIX/l9format-python/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/LeakIX/l9format-python/compare/v1.4.1...v2.0.0
[1.4.1]: https://github.com/LeakIX/l9format-python/compare/1.4.0...1.4.1
[1.4.0]: https://github.com/LeakIX/l9format-python/compare/1.3.2...1.4.0
[1.3.2]: https://github.com/LeakIX/l9format-python/compare/1.3.1-1...1.3.2
Expand Down
2 changes: 2 additions & 0 deletions l9format/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
ServiceCredentials,
Software,
SoftwareModule,
ValidationError,
)

__all__ = [
Expand Down Expand Up @@ -66,4 +67,5 @@
"ServiceCredentials",
"Software",
"SoftwareModule",
"ValidationError",
]
Loading
Loading