# HG changeset patch # User Bob Ippolito <bob@redivi.com> # Date 1432001621 25200 # Mon May 18 19:13:41 2015 -0700 # Node ID 149f896d1d720f7b425eac030dbc06b29f44ff50 # Parent bb51952fbbb47014d47793d4a2ad48002f551e80 bump version for #119 diff --git a/CHANGES.txt b/CHANGES.txt --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +Version 3.7.1 released 2015-05-18 + +* Fix compilation with MSVC + https://github.com/simplejson/simplejson/pull/119 + Version 3.7.0 released 2015-05-18 * simplejson no longer trusts custom str/repr methods for int, long, float diff --git a/conf.py b/conf.py --- a/conf.py +++ b/conf.py @@ -44,7 +44,7 @@ # The short X.Y version. version = '3.7' # The full version, including alpha/beta/rc tags. -release = '3.7.0' +release = '3.7.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 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ DistutilsPlatformError IS_PYPY = hasattr(sys, 'pypy_translation_info') -VERSION = '3.7.0' +VERSION = '3.7.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 --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -98,7 +98,7 @@ Expecting property name: line 1 column 3 (char 2) """ from __future__ import absolute_import -__version__ = '3.7.0' +__version__ = '3.7.1' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',