Skip to content

Commit 68361ed

Browse files
release 4.4.2
1 parent 9bbd181 commit 68361ed

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
release-date = "2023-11-11"
2+
13
[[entries]]
24
id = "765031c7-ffd8-4078-8e54-4e5e9154f036"
35
type = "improvement"

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.4.1"
3+
version = "4.4.2"
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.4.1"
1+
__version__ = "4.4.2"
22

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

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.4.1"
3+
version = "4.4.2"
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.4.1"
18+
"databind.core" = "^4.4.2"
1919
nr-date = "^2.0.0"
2020
typeapi = "^2.0.1"
2121
typing-extensions = ">=3.10.0,<4.7" # See https://github.com/python/typing_extensions/issues/265#issuecomment-1616809112

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.4.1"
11+
__version__ = "4.4.2"
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.4.1"
3+
version = "4.4.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.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.4.1"
13-
"databind.json" = "^4.4.1"
12+
"databind.core" = "^4.4.2"
13+
"databind.json" = "^4.4.2"
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.4.1"
1+
__version__ = "4.4.2"

0 commit comments

Comments
 (0)