Skip to content

Commit 1a80ece

Browse files
release 4.5.2
1 parent 8070dac commit 1a80ece

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

.changelog/_unreleased.toml renamed to .changelog/4.5.2.toml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
release-date = "2024-05-31"
2+
13
[[entries]]
24
id = "0240153b-1aaa-4801-b258-522c608bb936"
35
type = "improvement"

databind.core/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databind.core"
3-
version = "4.5.1"
3+
version = "4.5.2"
44
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."
55
authors = ["Niklas Rosenstein <[email protected]>"]
66
license = "MIT"
@@ -14,7 +14,7 @@ Repository = "https://github.com/NiklasRosenstein/python-databind"
1414

1515
[tool.poetry.dependencies]
1616
python = "^3.8.0"
17-
databind = "^4.5.1"
17+
databind = "^4.5.2"
1818

1919
[build-system]
2020
requires = ["poetry-core==1.0.8"] # Don't ugprade, see https://github.com/NiklasRosenstein/python-databind/issues/64

databind.json/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databind.json"
3-
version = "4.5.1"
3+
version = "4.5.2"
44
description = "De-/serialize Python dataclasses to or from JSON payloads. Compatible with Python 3.8 and newer. Deprecated, use `databind` module instead."
55
authors = ["Niklas Rosenstein <[email protected]>"]
66
license = "MIT"
@@ -14,7 +14,7 @@ Repository = "https://github.com/NiklasRosenstein/python-databind"
1414

1515
[tool.poetry.dependencies]
1616
python = "^3.8.0"
17-
databind = "^4.5.1"
17+
databind = "^4.5.2"
1818

1919
[build-system]
2020
requires = ["poetry-core==1.0.8"] # Don't ugprade, see https://github.com/NiklasRosenstein/python-databind/issues/64

databind/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databind"
3-
version = "4.5.1"
3+
version = "4.5.2"
44
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."
55
authors = ["Niklas Rosenstein <[email protected]>"]
66
license = "MIT"

databind/src/databind/core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.5.1"
1+
__version__ = "4.5.2"
22

33
from .context import Context, Direction, Location, format_context_trace
44
from .converter import ConversionError, Converter, DelegateToClassmethodConverter, Module, NoMatchingConverter

databind/src/databind/json/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from databind.json.module import JsonModule
88
from databind.json.settings import JsonConverter
99

10-
__version__ = "4.5.1"
10+
__version__ = "4.5.2"
1111
__all__ = [
1212
"dump",
1313
"dumps",

0 commit comments

Comments
 (0)