diff options
author | Bob Ippolito <bob@redivi.com> | 2017-11-23 13:22:11 -0800 |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2017-11-23 13:22:16 -0800 |
commit | 83c36e41df1f3187e7aaabd88453f2f03c1b803b (patch) | |
tree | a304735ae055c98af5a3b447737f4c9ed80e1ce8 | |
parent | 5b74a43375bb2597b047e546d6cab778100d1861 (diff) | |
download | simplejson-83c36e41df1f3187e7aaabd88453f2f03c1b803b.tar.gz |
Update version, add *.pyd to gitignore
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | conf.py | 2 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | simplejson/__init__.py | 2 |
5 files changed, 8 insertions, 3 deletions
@@ -2,6 +2,7 @@ *.egg *.pyc *.so +*.pyd .DS_Store /MANIFEST /.coverage diff --git a/CHANGES.txt b/CHANGES.txt index 443c5c3..d6edd31 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,7 @@ +Version 3.12.2 released 2017-11-23 + +* Workarounds for NamedTemporaryFile issues with Windows for tool tests + Version 3.12.1 released 2017-11-23 * Misc updates to build infrastructure @@ -44,7 +44,7 @@ copyright = '2017, Bob Ippolito' # The short X.Y version. version = '3.12' # The full version, including alpha/beta/rc tags. -release = '3.12.1' +release = '3.12.2' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: @@ -11,7 +11,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \ DistutilsPlatformError IS_PYPY = hasattr(sys, 'pypy_translation_info') -VERSION = '3.12.1' +VERSION = '3.12.2' 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 3741f1f..32a4875 100644 --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -97,7 +97,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.12.1' +__version__ = '3.12.2' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', |