summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2017-06-18 07:14:14 -0700
committerBob Ippolito <bob@redivi.com>2017-06-18 07:14:14 -0700
commit52550b07f2e39d53d55ec13aedc5421959168ecd (patch)
treebfa4741041935b496ae8676f5f71020ed0b9c298 /CHANGES.txt
parentb166c2b593d32b3d5a0866554aded44bf21f6297 (diff)
downloadsimplejson-52550b07f2e39d53d55ec13aedc5421959168ecd.tar.gz
v3.11.0v3.11.0
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index bd01fe8..ae8b7e3 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,25 @@
+Version 3.11.0 released 2017-06-18
+
+* docstring fix in JSONEncoder
+ https://github.com/simplejson/simplejson/pull/172
+* Call PyObject_IsTrue() only once for the strict argument of scanner
+ https://github.com/simplejson/simplejson/pull/170
+* Fix a crash with unencodable encoding in the encoder
+ https://github.com/simplejson/simplejson/pull/171
+* Remove unused imports
+ https://github.com/simplejson/simplejson/pull/162
+* Remove remnants of Python 2.4 support
+ https://github.com/simplejson/simplejson/pull/168
+* Fix argument checking errors in _speedups.c
+ https://github.com/simplejson/simplejson/pull/169
+* Remove the `__init__` methods in extension classes
+ https://github.com/simplejson/simplejson/pull/166
+* Fix typo in the doc for loads
+ https://github.com/simplejson/simplejson/issues/161
+* Add Python 3.6 to testing matrix and PyPI metadata
+ https://github.com/simplejson/simplejson/pull/153
+ https://github.com/simplejson/simplejson/pull/152
+
Version 3.10.0 released 2016-10-28
* Add RawJSON class to allow a faster path for already encoded JSON.