json2xml 5.2.0__tar.gz → 5.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {json2xml-5.2.0 → json2xml-5.2.1}/HISTORY.rst +8 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/PKG-INFO +1 -3
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml/__init__.py +1 -1
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml.egg-info/PKG-INFO +1 -3
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml.egg-info/requires.txt +0 -2
- {json2xml-5.2.0 → json2xml-5.2.1}/pyproject.toml +1 -3
- json2xml-5.2.1/requirements.in +3 -0
- json2xml-5.2.0/requirements.in +0 -3
- {json2xml-5.2.0 → json2xml-5.2.1}/AUTHORS.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/CONTRIBUTING.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/LICENSE +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/MANIFEST.in +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/README.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/Makefile +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/authors.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/conf.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/contributing.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/history.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/index.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/installation.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/json2xml.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/make.bat +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/modules.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/readme.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/docs/usage.rst +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml/dicttoxml.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml/json2xml.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml/utils.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml.egg-info/SOURCES.txt +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml.egg-info/dependency_links.txt +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/json2xml.egg-info/top_level.txt +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/setup.cfg +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/setup.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/tests/__init__.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/tests/conftest.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/tests/test_dict2xml.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/tests/test_json2xml.py +0 -0
- {json2xml-5.2.0 → json2xml-5.2.1}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
History
|
|
2
2
|
=======
|
|
3
3
|
|
|
4
|
+
5.2.0 / 2025-07-21
|
|
5
|
+
==================
|
|
6
|
+
|
|
7
|
+
* chore: version bump to 5.2.0
|
|
8
|
+
* chore(deps): bump urllib3 from 2.3.0 to 2.5.0 (#244)
|
|
9
|
+
* security: Fix Jinja2 and py library vulnerabilities (#243)
|
|
10
|
+
* Update LICENSE
|
|
11
|
+
|
|
4
12
|
5.0.5 / 2024-08-31
|
|
5
13
|
==================
|
|
6
14
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: json2xml
|
|
3
|
-
Version: 5.2.
|
|
3
|
+
Version: 5.2.1
|
|
4
4
|
Summary: Simple Python Library to convert JSON to XML
|
|
5
5
|
Author-email: Vinit Kumar <mail@vinitkumar.me>
|
|
6
6
|
License: Apache Software License 2.0
|
|
@@ -28,11 +28,9 @@ Requires-Dist: xmltodict>=0.12.0
|
|
|
28
28
|
Requires-Dist: pytest
|
|
29
29
|
Requires-Dist: pytest-cov
|
|
30
30
|
Requires-Dist: coverage
|
|
31
|
-
Requires-Dist: py
|
|
32
31
|
Requires-Dist: setuptools
|
|
33
32
|
Provides-Extra: test
|
|
34
33
|
Requires-Dist: pytest==7.0.1; extra == "test"
|
|
35
|
-
Requires-Dist: py==1.11.0; extra == "test"
|
|
36
34
|
Dynamic: license-file
|
|
37
35
|
|
|
38
36
|
========
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: json2xml
|
|
3
|
-
Version: 5.2.
|
|
3
|
+
Version: 5.2.1
|
|
4
4
|
Summary: Simple Python Library to convert JSON to XML
|
|
5
5
|
Author-email: Vinit Kumar <mail@vinitkumar.me>
|
|
6
6
|
License: Apache Software License 2.0
|
|
@@ -28,11 +28,9 @@ Requires-Dist: xmltodict>=0.12.0
|
|
|
28
28
|
Requires-Dist: pytest
|
|
29
29
|
Requires-Dist: pytest-cov
|
|
30
30
|
Requires-Dist: coverage
|
|
31
|
-
Requires-Dist: py
|
|
32
31
|
Requires-Dist: setuptools
|
|
33
32
|
Provides-Extra: test
|
|
34
33
|
Requires-Dist: pytest==7.0.1; extra == "test"
|
|
35
|
-
Requires-Dist: py==1.11.0; extra == "test"
|
|
36
34
|
Dynamic: license-file
|
|
37
35
|
|
|
38
36
|
========
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "json2xml"
|
|
7
|
-
version = "5.2.
|
|
7
|
+
version = "5.2.1" # Replace with the dynamic version if needed
|
|
8
8
|
description = "Simple Python Library to convert JSON to XML"
|
|
9
9
|
readme = "README.rst"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -34,7 +34,6 @@ dependencies = [
|
|
|
34
34
|
"pytest",
|
|
35
35
|
"pytest-cov",
|
|
36
36
|
"coverage",
|
|
37
|
-
"py",
|
|
38
37
|
"setuptools",
|
|
39
38
|
]
|
|
40
39
|
|
|
@@ -47,7 +46,6 @@ include = ["json2xml"]
|
|
|
47
46
|
[project.optional-dependencies]
|
|
48
47
|
test = [
|
|
49
48
|
"pytest==7.0.1",
|
|
50
|
-
"py==1.11.0"
|
|
51
49
|
]
|
|
52
50
|
|
|
53
51
|
[tool.pytest.ini_options]
|
json2xml-5.2.0/requirements.in
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|