From b943b2bb7fcecfefda78a24374b747d8590c8666 Mon Sep 17 00:00:00 2001 From: Bob Ippolito Date: Sat, 28 Mar 2009 05:18:13 +0000 Subject: version bump git-svn-id: http://simplejson.googlecode.com/svn/trunk@176 a4795897-2c25-0410-b006-0d3caba88fa1 --- setup.py | 2 +- simplejson/__init__.py | 2 +- 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', -- cgit v1.2.1