Skip to content

Commit 34c11bd

Browse files
release 4.3.0
1 parent 7ef3510 commit 34c11bd

File tree

9 files changed

+15
-9
lines changed

9 files changed

+15
-9
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
release-date = "2023-05-28"
2+
13
[[entries]]
24
id = "34f4cbf8-4bd4-4b6d-837f-6bf4b2006803"
35
type = "feature"

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.2.8"
3+
version = "4.3.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 <rosensteinniklas@gmail.com>"]
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.2.8"
1+
__version__ = "4.3.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.3.0.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
release-date = "2023-05-28"
2+
13
[[entries]]
24
id = "5d31c345-35ef-40f4-bf02-bfca907f0517"
35
type = "feature"

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.2.8"
3+
version = "4.3.0"
44
description = "De-/serialize Python dataclasses to or from JSON payloads. Compatible with Python 3.7 and newer."
55
authors = ["Niklas Rosenstein <rosensteinniklas@gmail.com>"]
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.2.8"
18+
"databind.core" = "^4.3.0"
1919
nr-date = "^2.0.0"
2020
typeapi = "^1.4.2"
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.2.8"
11+
__version__ = "4.3.0"
1212
__all__ = [
1313
"dump",
1414
"dumps",

databind/.changelog/_unreleased.toml renamed to databind/.changelog/4.3.0.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
release-date = "2023-05-28"
2+
13
[[entries]]
24
id = "f6034daf-a9d7-46d5-8430-4128b89c05e9"
35
type = "tests"

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.2.8"
3+
version = "4.3.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 <rosensteinniklas@gmail.com>"]
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.2.8"
13-
"databind.json" = "^4.2.8"
12+
"databind.core" = "^4.3.0"
13+
"databind.json" = "^4.3.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.2.8"
1+
__version__ = "4.3.0"

0 commit comments

Comments
 (0)