# HG changeset patch # User Bob Ippolito <bob@redivi.com> # Date 1261954523 0 # Sun Dec 27 22:55:23 2009 +0000 # Node ID be2687926ad813774fee3f9fc3822d59c5711640 # Parent f6f1a23db6fb76dca8232a41c5dde07f0227c865 version bump to rc2 git-svn-id: http://simplejson.googlecode.com/svn/trunk@216 a4795897-2c25-0410-b006-0d3caba88fa1 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \ DistutilsPlatformError -VERSION = '2.1.0rc1' +VERSION = '2.1.0rc2' DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python" LONG_DESCRIPTION = """ simplejson is a simple, fast, complete, correct and extensible diff --git a/simplejson/__init__.py b/simplejson/__init__.py --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -97,7 +97,7 @@ $ echo '{ 1.2:3.4}' | python -m simplejson.tool Expecting property name: line 1 column 2 (char 2) """ -__version__ = '2.1.0rc1' +__version__ = '2.1.0rc2' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',