diff --git a/CHANGELOG.md b/CHANGELOG.md index 4669602..661d836 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.10.0](https://github.com/chrisimcevoy/pyoda-time/compare/v0.9.3...v0.10.0) (2025-01-11) + + +### Features + +* Implement `DateTimeZone` ([#243](https://github.com/chrisimcevoy/pyoda-time/issues/243)) ([78f3c94](https://github.com/chrisimcevoy/pyoda-time/commit/78f3c9481d0ed137035294fdb9c8eecb276f8cbe)) +* Implement `OffsetDateTime.with_offset` ([#233](https://github.com/chrisimcevoy/pyoda-time/issues/233)) ([a115b89](https://github.com/chrisimcevoy/pyoda-time/commit/a115b899d5699cf10353e4295bf9f912d3cfdf73)) +* implement resolvers ([#240](https://github.com/chrisimcevoy/pyoda-time/issues/240)) ([c1b4452](https://github.com/chrisimcevoy/pyoda-time/commit/c1b445256d98db34247d272d8b5e4364f3115f44)) + + +### Bug Fixes + +* `LocalInstant.Minus()` is internal ([#241](https://github.com/chrisimcevoy/pyoda-time/issues/241)) ([090452a](https://github.com/chrisimcevoy/pyoda-time/commit/090452aaa8baff574b66a89170d6c591de7aca48)) + ## [0.9.3](https://github.com/chrisimcevoy/pyoda-time/compare/v0.9.2...v0.9.3) (2024-12-18) diff --git a/pyoda_time/__init__.py b/pyoda_time/__init__.py index 452c407..7330b90 100644 --- a/pyoda_time/__init__.py +++ b/pyoda_time/__init__.py @@ -2,7 +2,7 @@ # Use of this source code is governed by the Apache License 2.0, # as found in the LICENSE.txt file. -__version__ = "0.9.3" +__version__ = "0.10.0" __all__: list[str] = [ "AmbiguousTimeError", diff --git a/pyproject.toml b/pyproject.toml index 0329f9e..d45f959 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pyoda-time" -version = "0.9.3" +version = "0.10.0" description = "An alternative datetime library for Python." authors = [ {name = "Chris McEvoy", email = "chris@chrismcevoy.net"},