Skip to content

Commit a55412c

Browse files
fix versions
1 parent 0087cf6 commit a55412c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

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.6"
3+
version = "4.2.8"
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.2.6"
18+
"databind.core" = "^4.2.8"
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
@@ -9,7 +9,7 @@
99
from databind.core.mapper import ObjectMapper
1010
from databind.core.settings import Setting, Settings
1111

12-
__version__ = "4.2.6"
12+
__version__ = "4.2.8"
1313

1414
JsonType = t.Union[
1515
None,

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.6"
3+
version = "4.2.8"
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.2.6"
13-
"databind.json" = "^4.2.6"
12+
"databind.core" = "^4.2.8"
13+
"databind.json" = "^4.2.8"
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.6"
1+
__version__ = "4.2.8"

0 commit comments

Comments
 (0)