json2xml 6.0.2__tar.gz → 6.0.4__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.
Files changed (44) hide show
  1. {json2xml-6.0.2 → json2xml-6.0.4}/HISTORY.rst +25 -0
  2. {json2xml-6.0.2 → json2xml-6.0.4}/PKG-INFO +7 -8
  3. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml/__init__.py +1 -1
  4. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml.egg-info/PKG-INFO +7 -8
  5. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml.egg-info/requires.txt +4 -5
  6. {json2xml-6.0.2 → json2xml-6.0.4}/pyproject.toml +6 -7
  7. {json2xml-6.0.2 → json2xml-6.0.4}/AUTHORS.rst +0 -0
  8. {json2xml-6.0.2 → json2xml-6.0.4}/CONTRIBUTING.rst +0 -0
  9. {json2xml-6.0.2 → json2xml-6.0.4}/LICENSE +0 -0
  10. {json2xml-6.0.2 → json2xml-6.0.4}/MANIFEST.in +0 -0
  11. {json2xml-6.0.2 → json2xml-6.0.4}/README.rst +0 -0
  12. {json2xml-6.0.2 → json2xml-6.0.4}/docs/Makefile +0 -0
  13. {json2xml-6.0.2 → json2xml-6.0.4}/docs/authors.rst +0 -0
  14. {json2xml-6.0.2 → json2xml-6.0.4}/docs/benchmarks.rst +0 -0
  15. {json2xml-6.0.2 → json2xml-6.0.4}/docs/conf.py +0 -0
  16. {json2xml-6.0.2 → json2xml-6.0.4}/docs/contributing.rst +0 -0
  17. {json2xml-6.0.2 → json2xml-6.0.4}/docs/history.rst +0 -0
  18. {json2xml-6.0.2 → json2xml-6.0.4}/docs/index.rst +0 -0
  19. {json2xml-6.0.2 → json2xml-6.0.4}/docs/installation.rst +0 -0
  20. {json2xml-6.0.2 → json2xml-6.0.4}/docs/json2xml.rst +0 -0
  21. {json2xml-6.0.2 → json2xml-6.0.4}/docs/make.bat +0 -0
  22. {json2xml-6.0.2 → json2xml-6.0.4}/docs/modules.rst +0 -0
  23. {json2xml-6.0.2 → json2xml-6.0.4}/docs/readme.rst +0 -0
  24. {json2xml-6.0.2 → json2xml-6.0.4}/docs/usage.rst +0 -0
  25. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml/cli.py +0 -0
  26. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml/dicttoxml.py +0 -0
  27. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml/dicttoxml_fast.py +0 -0
  28. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml/json2xml.py +0 -0
  29. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml/utils.py +0 -0
  30. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml.egg-info/SOURCES.txt +0 -0
  31. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml.egg-info/dependency_links.txt +0 -0
  32. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml.egg-info/entry_points.txt +0 -0
  33. {json2xml-6.0.2 → json2xml-6.0.4}/json2xml.egg-info/top_level.txt +0 -0
  34. {json2xml-6.0.2 → json2xml-6.0.4}/requirements.in +0 -0
  35. {json2xml-6.0.2 → json2xml-6.0.4}/setup.cfg +0 -0
  36. {json2xml-6.0.2 → json2xml-6.0.4}/setup.py +0 -0
  37. {json2xml-6.0.2 → json2xml-6.0.4}/tests/__init__.py +0 -0
  38. {json2xml-6.0.2 → json2xml-6.0.4}/tests/conftest.py +0 -0
  39. {json2xml-6.0.2 → json2xml-6.0.4}/tests/test_cli.py +0 -0
  40. {json2xml-6.0.2 → json2xml-6.0.4}/tests/test_dict2xml.py +0 -0
  41. {json2xml-6.0.2 → json2xml-6.0.4}/tests/test_json2xml.py +0 -0
  42. {json2xml-6.0.2 → json2xml-6.0.4}/tests/test_missing_coverage.py +0 -0
  43. {json2xml-6.0.2 → json2xml-6.0.4}/tests/test_rust_dicttoxml.py +0 -0
  44. {json2xml-6.0.2 → json2xml-6.0.4}/tests/test_utils.py +0 -0
@@ -1,6 +1,31 @@
1
1
  History
2
2
  =======
3
3
 
4
+ 6.0.4 / 2026-02-12
5
+ ==================
6
+
7
+ * fix: remove test dependencies to correct place
8
+ * docs: generate changelog
9
+ * bump version
10
+ * Add rust tests (#271)
11
+ * feat(rust): make PyO3 optional to fix Python 3.14 fuzz linking (#270)
12
+ * chore: bump release
13
+ * fix: upgrade urllib3 to patched version (#269)
14
+ * Update README.rst (#268)
15
+ * docs: update README with comprehensive benchmark results
16
+
17
+
18
+ 6.0.3 / 2026-01-29
19
+ ==================
20
+
21
+ * bump version
22
+ * Add rust tests (#271)
23
+ * feat(rust): make PyO3 optional to fix Python 3.14 fuzz linking (#270)
24
+ * chore: bump release
25
+ * fix: upgrade urllib3 to patched version (#269)
26
+ * Update README.rst (#268)
27
+ * docs: update README with comprehensive benchmark results
28
+
4
29
  6.0.2 / 2026-01-20
5
30
  ==================
6
31
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: json2xml
3
- Version: 6.0.2
3
+ Version: 6.0.4
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
@@ -24,13 +24,12 @@ License-File: LICENSE
24
24
  License-File: AUTHORS.rst
25
25
  Requires-Dist: defusedxml
26
26
  Requires-Dist: urllib3
27
- Requires-Dist: xmltodict>=0.12.0
28
- Requires-Dist: pytest
29
- Requires-Dist: pytest-cov
30
- Requires-Dist: coverage
31
- Requires-Dist: setuptools
32
- Provides-Extra: test
33
- Requires-Dist: pytest>=8.4.1; extra == "test"
27
+ Provides-Extra: dev
28
+ Requires-Dist: pytest>=8.4.1; extra == "dev"
29
+ Requires-Dist: pytest-cov; extra == "dev"
30
+ Requires-Dist: coverage; extra == "dev"
31
+ Requires-Dist: setuptools; extra == "dev"
32
+ Requires-Dist: xmltodict>=0.12.0; extra == "dev"
34
33
  Provides-Extra: fast
35
34
  Requires-Dist: json2xml-rs>=0.1.0; extra == "fast"
36
35
  Dynamic: license-file
@@ -2,5 +2,5 @@
2
2
 
3
3
  __author__ = """Vinit Kumar"""
4
4
  __email__ = "mail@vinitkumar.me"
5
- __version__ = "6.0.2"
5
+ __version__ = "6.0.4"
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: json2xml
3
- Version: 6.0.2
3
+ Version: 6.0.4
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
@@ -24,13 +24,12 @@ License-File: LICENSE
24
24
  License-File: AUTHORS.rst
25
25
  Requires-Dist: defusedxml
26
26
  Requires-Dist: urllib3
27
- Requires-Dist: xmltodict>=0.12.0
28
- Requires-Dist: pytest
29
- Requires-Dist: pytest-cov
30
- Requires-Dist: coverage
31
- Requires-Dist: setuptools
32
- Provides-Extra: test
33
- Requires-Dist: pytest>=8.4.1; extra == "test"
27
+ Provides-Extra: dev
28
+ Requires-Dist: pytest>=8.4.1; extra == "dev"
29
+ Requires-Dist: pytest-cov; extra == "dev"
30
+ Requires-Dist: coverage; extra == "dev"
31
+ Requires-Dist: setuptools; extra == "dev"
32
+ Requires-Dist: xmltodict>=0.12.0; extra == "dev"
34
33
  Provides-Extra: fast
35
34
  Requires-Dist: json2xml-rs>=0.1.0; extra == "fast"
36
35
  Dynamic: license-file
@@ -1,13 +1,12 @@
1
1
  defusedxml
2
2
  urllib3
3
- xmltodict>=0.12.0
4
- pytest
3
+
4
+ [dev]
5
+ pytest>=8.4.1
5
6
  pytest-cov
6
7
  coverage
7
8
  setuptools
9
+ xmltodict>=0.12.0
8
10
 
9
11
  [fast]
10
12
  json2xml-rs>=0.1.0
11
-
12
- [test]
13
- pytest>=8.4.1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "json2xml"
7
- version = "6.0.2"
7
+ version = "6.0.4"
8
8
  description = "Simple Python Library to convert JSON to XML"
9
9
  readme = "README.rst"
10
10
  requires-python = ">=3.10"
@@ -30,11 +30,6 @@ classifiers = [
30
30
  dependencies = [
31
31
  "defusedxml",
32
32
  "urllib3",
33
- "xmltodict>=0.12.0",
34
- "pytest",
35
- "pytest-cov",
36
- "coverage",
37
- "setuptools",
38
33
  ]
39
34
 
40
35
  [project.urls]
@@ -47,8 +42,12 @@ json2xml-py = "json2xml.cli:main"
47
42
  include = ["json2xml"]
48
43
 
49
44
  [project.optional-dependencies]
50
- test = [
45
+ dev = [
51
46
  "pytest>=8.4.1",
47
+ "pytest-cov",
48
+ "coverage",
49
+ "setuptools",
50
+ "xmltodict>=0.12.0",
52
51
  ]
53
52
  fast = ["json2xml-rs>=0.1.0"]
54
53
 
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