Skip to content

Commit f0cd829

Browse files
committed
feat: cleanup docs a bit
1 parent 71cb9cb commit f0cd829

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CONTRIBUTING.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,7 @@ Before you submit a pull request, check that it meets these guidelines:
102102
2. If the pull request adds functionality, the docs should be updated. Put
103103
your new functionality into a function with a docstring, and add the
104104
feature to the list in README.rst.
105-
3. The pull request should work for Python 2.7, 3.4, 3.5 and 3.6, and for PyPy. Check
106-
https://travis-ci.org/vinitkumar/json2xml/pull_requests
107-
and make sure that the tests pass for all supported Python versions.
105+
3. The pull request should work for 3.7+, and for PyPy. Make sure that the tests pass for all supported Python versions.
108106

109107
Tips
110108
----

HISTORY.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
History
22
=======
33

4+
v3.11.0 / 2022-01-31
5+
====================
6+
7+
* bump version
8+
* feat: remove comments
9+
* Feat: install pytest separately and run pytests now
10+
* fix tox
11+
* add some documentation on testing
12+
* split testing libs away from release
13+
* fix: update changelog
14+
* bump version to 3.10.0
15+
* fix: we support Python3.7+ now (#101)
16+
* Issue: #99 dicttoxml igores the root param (#100)
17+
418
v3.10.0 / 2022-01-29
519
====================
620

json2xml/dicttoxml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
dict-like objects) data types, with arbitrary nesting for the collections.
77
Items with a `datetime` type are converted to ISO format strings.
88
Items with a `None` type become empty XML elements.
9-
This module works with both Python 2 and 3.
9+
This module works with Python 3.7+
1010
"""
1111
#!/usr/bin/env python
1212
# coding: utf-8

0 commit comments

Comments
 (0)