summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2017-11-24 09:18:20 -0800
committerBob Ippolito <bob@redivi.com>2017-11-24 09:18:20 -0800
commit42ec87d0a3c14b8d4536900868e6a95d96431672 (patch)
treefe1fd4cd4168088d9fc581f8d60197858769b860
parent518401fc950fb76848f9a170e3cfb35b5dfcfbff (diff)
downloadsimplejson-42ec87d0a3c14b8d4536900868e6a95d96431672.tar.gz
v3.13.1v3.13.1
-rw-r--r--CHANGES.txt6
-rw-r--r--conf.py2
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
4 files changed, 9 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 1efe494..3eef58e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,9 @@
+Version 3.13.1 released 2017-11-24
+
+* Improve CI to catch speedups build regressions
+* Fix speedups build regression in Python 2.x
+ https://github.com/simplejson/simplejson/issues/193
+
Version 3.13.0 released 2017-11-23
* Workarounds for NamedTemporaryFile issues with Windows for tool tests
diff --git a/conf.py b/conf.py
index 469072b..ed33870 100644
--- a/conf.py
+++ b/conf.py
@@ -44,7 +44,7 @@ copyright = '2017, Bob Ippolito'
# The short X.Y version.
version = '3.13'
# The full version, including alpha/beta/rc tags.
-release = '3.13.0'
+release = '3.13.1'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
diff --git a/setup.py b/setup.py
index dc3e378..9b9b9ee 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.13.0'
+VERSION = '3.13.1'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
with open('README.rst', 'r') as f:
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index 8a67437..54a115a 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -98,7 +98,7 @@ Using simplejson.tool from the shell to validate and pretty-print::
Expecting property name: line 1 column 3 (char 2)
"""
from __future__ import absolute_import
-__version__ = '3.13.0'
+__version__ = '3.13.1'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',