diff --git a/HISTORY.rst b/HISTORY.rst index 496ad91..460f5b8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,4 +1,11 @@ +6.0.7 / 2026-04-26 +================== + + * fix: handle JSON conversion edge cases and improve URL reader robustness (#284) + * chore(deps-dev): bump pytest from 9.0.1 to 9.0.3 (#282) + + 6.0.6 / 2026-04-08 ================== diff --git a/json2xml/__init__.py b/json2xml/__init__.py index 8e11a99..9cb6eb7 100644 --- a/json2xml/__init__.py +++ b/json2xml/__init__.py @@ -2,4 +2,4 @@ __author__ = """Vinit Kumar""" __email__ = "mail@vinitkumar.me" -__version__ = "6.0.6" +__version__ = "6.0.7" diff --git a/pyproject.toml b/pyproject.toml index ab6524b..d82d6f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "json2xml" -version = "6.0.6" +version = "6.0.7" description = "Simple Python Library to convert JSON to XML" readme = "README.rst" requires-python = ">=3.10" diff --git a/setup.cfg b/setup.cfg index d1da384..870db1f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 6.0.7 commit = True tag = True diff --git a/uv.lock b/uv.lock index 21a142d..9e51f49 100644 --- a/uv.lock +++ b/uv.lock @@ -147,7 +147,7 @@ wheels = [ [[package]] name = "json2xml" -version = "6.0.6" +version = "6.0.7" source = { editable = "." } dependencies = [ { name = "defusedxml" },