diff options
author | Bob Ippolito <bob@redivi.com> | 2009-12-27 19:42:48 +0000 |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2009-12-27 19:42:48 +0000 |
commit | 6017358b33a0592f35082a639b94e53ebdafd0a7 (patch) | |
tree | 3b084c5d2b90d9ae10ad7dde94a664ef401e499a | |
parent | a73172930ad3b22927d816dc14675eaae72e0501 (diff) | |
download | simplejson-6017358b33a0592f35082a639b94e53ebdafd0a7.tar.gz |
tag as 2.1.0rc1
git-svn-id: http://simplejson.googlecode.com/svn/trunk@209 a4795897-2c25-0410-b006-0d3caba88fa1
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | simplejson/__init__.py | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -12,7 +12,7 @@ from distutils.command.build_ext import build_ext from distutils.errors import CCompilerError, DistutilsExecError, \ DistutilsPlatformError -VERSION = '2.1.0' +VERSION = '2.1.0rc1' 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 index 7020140..f3ad15e 100644 --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -97,7 +97,7 @@ Using simplejson.tool from the shell to validate and pretty-print:: $ echo '{ 1.2:3.4}' | python -m simplejson.tool Expecting property name: line 1 column 2 (char 2) """ -__version__ = '2.1.0' +__version__ = '2.1.0rc1' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', @@ -403,4 +403,4 @@ def _toggle_speedups(enabled): separators=None, encoding='utf-8', default=None, - )
\ No newline at end of file + ) |