summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2009-03-28 05:18:13 +0000
committerBob Ippolito <bob@redivi.com>2009-03-28 05:18:13 +0000
commitb943b2bb7fcecfefda78a24374b747d8590c8666 (patch)
tree3058e0c8db936223b5f950b05daa1705a743ab8e
parent85e1e6878525c63441d120c39a198f33cc392816 (diff)
downloadsimplejson-b943b2bb7fcecfefda78a24374b747d8590c8666.tar.gz
version bump
git-svn-id: http://simplejson.googlecode.com/svn/trunk@176 a4795897-2c25-0410-b006-0d3caba88fa1
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 24f43bf..78a453d 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ from distutils.command.build_ext import build_ext
from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
-VERSION = '2.0.9'
+VERSION = '2.1.0'
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 93adadb..db4ed2d 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.0.9'
+__version__ = '2.1.0'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONEncoder',