Skip to content

Commit

Permalink
chore(release): 1.1.2
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release

Signed-off-by: semantic-release <semantic-release>
  • Loading branch information
semantic-release committed Oct 1, 2024
1 parent f4b1c27 commit e4de42a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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&lt;3.11

---------

Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt;
Co-authored-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`f4b1c27`](https://github.com/madpah/serializable/commit/f4b1c27110d1becc76771efffd8dc0a96d629cb5))

### Refactor

* refactor: simplify type conversio in `XsdDate`/`XsdDateTime` deserializers (#139)

Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`d75df5b`](https://github.com/madpah/serializable/commit/d75df5bd07baf3a1e7c716190d4352262cccc06a))


## v1.1.1 (2024-09-16)

### Chore
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <paul.horton@owasp.org>"]
maintainers = [
Expand Down
2 changes: 1 addition & 1 deletion serializable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit e4de42a

Please sign in to comment.