Skip to content

Commit

Permalink
release 4.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasRosenstein committed May 31, 2024
1 parent 8070dac commit 1a80ece
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .changelog/_unreleased.toml → .changelog/4.5.2.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
release-date = "2024-05-31"

[[entries]]
id = "0240153b-1aaa-4801-b258-522c608bb936"
type = "improvement"
Expand Down
4 changes: 2 additions & 2 deletions databind.core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "databind.core"
version = "4.5.1"
version = "4.5.2"
description = "Databind is a library inspired by jackson-databind to de-/serialize Python dataclasses. Compatible with Python 3.8 and newer. Deprecated, use `databind` package."
authors = ["Niklas Rosenstein <[email protected]>"]
license = "MIT"
Expand All @@ -14,7 +14,7 @@ Repository = "https://github.com/NiklasRosenstein/python-databind"

[tool.poetry.dependencies]
python = "^3.8.0"
databind = "^4.5.1"
databind = "^4.5.2"

[build-system]
requires = ["poetry-core==1.0.8"] # Don't ugprade, see https://github.com/NiklasRosenstein/python-databind/issues/64
Expand Down
4 changes: 2 additions & 2 deletions databind.json/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "databind.json"
version = "4.5.1"
version = "4.5.2"
description = "De-/serialize Python dataclasses to or from JSON payloads. Compatible with Python 3.8 and newer. Deprecated, use `databind` module instead."
authors = ["Niklas Rosenstein <[email protected]>"]
license = "MIT"
Expand All @@ -14,7 +14,7 @@ Repository = "https://github.com/NiklasRosenstein/python-databind"

[tool.poetry.dependencies]
python = "^3.8.0"
databind = "^4.5.1"
databind = "^4.5.2"

[build-system]
requires = ["poetry-core==1.0.8"] # Don't ugprade, see https://github.com/NiklasRosenstein/python-databind/issues/64
Expand Down
2 changes: 1 addition & 1 deletion databind/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "databind"
version = "4.5.1"
version = "4.5.2"
description = "Databind is a library inspired by jackson-databind to de-/serialize Python dataclasses. The `databind` package will install the full suite of databind packages. Compatible with Python 3.8 and newer."
authors = ["Niklas Rosenstein <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion databind/src/databind/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "4.5.1"
__version__ = "4.5.2"

from .context import Context, Direction, Location, format_context_trace
from .converter import ConversionError, Converter, DelegateToClassmethodConverter, Module, NoMatchingConverter
Expand Down
2 changes: 1 addition & 1 deletion databind/src/databind/json/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from databind.json.module import JsonModule
from databind.json.settings import JsonConverter

__version__ = "4.5.1"
__version__ = "4.5.2"
__all__ = [
"dump",
"dumps",
Expand Down

0 comments on commit 1a80ece

Please sign in to comment.