diff --git a/CHANGELOG.md b/CHANGELOG.md index 69a81ba..6b703a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ +## v1.1.2 (2024-10-01) + +### Fix + +* fix: date/time deserialization with fractional seconds (#138) + +fix multiple where fractional seconds were not properly deserialized or deserialization caused unexpected crashes in py<3.11 + +--------- + +Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com> +Co-authored-by: Jan Kowalleck <jan.kowalleck@gmail.com> ([`f4b1c27`](https://github.com/madpah/serializable/commit/f4b1c27110d1becc76771efffd8dc0a96d629cb5)) + +### Refactor + +* refactor: simplify type conversio in `XsdDate`/`XsdDateTime` deserializers (#139) + +Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com> ([`d75df5b`](https://github.com/madpah/serializable/commit/d75df5bd07baf3a1e7c716190d4352262cccc06a)) + + ## v1.1.1 (2024-09-16) ### Chore diff --git a/docs/conf.py b/docs/conf.py index 689439a..18805eb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ # The full version, including alpha/beta/rc tags # !! version is managed by semantic_release -release = "1.1.1" +release = "1.1.2" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 898dba7..59671fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "py-serializable" -version = "1.1.1" +version = "1.1.2" description = "Library for serializing and deserializing Python Objects to and from JSON and XML." authors = ["Paul Horton "] maintainers = [ diff --git a/serializable/__init__.py b/serializable/__init__.py index 224b97a..9338ee8 100644 --- a/serializable/__init__.py +++ b/serializable/__init__.py @@ -60,7 +60,7 @@ # !! version is managed by semantic_release # do not use typing here, or else `semantic_release` might have issues finding the variable -__version__ = '1.1.1' +__version__ = '1.1.2' _logger = getLogger(__name__) _logger.addHandler(NullHandler())