diff options
author | Bob Ippolito <bob@redivi.com> | 2018-03-27 16:13:22 -0700 |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2018-03-27 16:13:22 -0700 |
commit | 0406430cbcb0e31d27bd064db57837b94ed05294 (patch) | |
tree | 81d50cef80b84830ddaa66c8ebfbc9eaccdec17d | |
parent | d6b29ef522df2c3f7e26718e8578c89e9d733d83 (diff) | |
download | simplejson-0406430cbcb0e31d27bd064db57837b94ed05294.tar.gz |
Update CHANGES.txt and increment version to 3.13.3
-rw-r--r-- | CHANGES.txt | 5 | ||||
-rw-r--r-- | conf.py | 2 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | simplejson/__init__.py | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 49faccf..88d412f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +Version 3.13.3 released 2018-XX-XX + +* Fix an incorrect type test in Python 2, avoiding an unnecessary unicode copy. + https://github.com/simplejson/simplejson/pull/210 + Version 3.13.2 released 2017-11-24 * Fix additional Python 2.x compilation issue on Windows @@ -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.2' +release = '3.13.3' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: @@ -12,7 +12,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \ DistutilsPlatformError IS_PYPY = hasattr(sys, 'pypy_translation_info') -VERSION = '3.13.2' +VERSION = '3.13.3' 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 adca453..0d63911 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.2' +__version__ = '3.13.3' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', |