Skip to content

Commit d0939c0

Browse files
release 4.4.0
1 parent 16b54b1 commit d0939c0

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

databind.core/.changelog/_unreleased.toml renamed to databind.core/.changelog/4.4.0.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
release-date = "2023-06-21"
2+
13
[[entries]]
24
id = "b44947f0-8e70-4a29-b584-a20eeff51bba"
35
type = "fix"

databind.core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databind.core"
3-
version = "4.3.2"
3+
version = "4.4.0"
44
description = "Databind is a library inspired by jackson-databind to de-/serialize Python dataclasses. Compatible with Python 3.7 and newer."
55
authors = ["Niklas Rosenstein <[email protected]>"]
66
license = "MIT"

databind.core/src/databind/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.3.2"
1+
__version__ = "4.4.0"
22

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

databind.json/.changelog/_unreleased.toml renamed to databind.json/.changelog/4.4.0.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
release-date = "2023-06-21"
2+
13
[[entries]]
24
id = "6ac5f7d0-aeb8-436c-bc2c-a178e2a82a74"
35
type = "tests"

databind.json/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databind.json"
3-
version = "4.3.2"
3+
version = "4.4.0"
44
description = "De-/serialize Python dataclasses to or from JSON payloads. Compatible with Python 3.7 and newer."
55
authors = ["Niklas Rosenstein <[email protected]>"]
66
license = "MIT"
@@ -15,7 +15,7 @@ Repository = "https://github.com/NiklasRosenstein/python-databind"
1515

1616
[tool.poetry.dependencies]
1717
python = "^3.6.3"
18-
"databind.core" = "^4.3.2"
18+
"databind.core" = "^4.4.0"
1919
nr-date = "^2.0.0"
2020
typeapi = "^2.0.1"
2121
typing-extensions = ">=3.10.0"

databind.json/src/databind/json/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from databind.json.module import JsonModule
99
from databind.json.settings import JsonConverter
1010

11-
__version__ = "4.3.2"
11+
__version__ = "4.4.0"
1212
__all__ = [
1313
"dump",
1414
"dumps",

databind/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databind"
3-
version = "4.3.2"
3+
version = "4.4.0"
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.7 and newer."
55
authors = ["Niklas Rosenstein <[email protected]>"]
66
license = "MIT"
@@ -9,8 +9,8 @@ packages = [{ include="databind/_version", from="src" }]
99

1010
[tool.poetry.dependencies]
1111
python = "^3.6.3"
12-
"databind.core" = "^4.3.2"
13-
"databind.json" = "^4.3.2"
12+
"databind.core" = "^4.4.0"
13+
"databind.json" = "^4.4.0"
1414

1515
[build-system]
1616
requires = ["poetry-core==1.0.8"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.3.2"
1+
__version__ = "4.4.0"

0 commit comments

Comments
 (0)