summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2011-04-19 13:01:07 -0700
committerBob Ippolito <bob@redivi.com>2011-04-19 13:01:07 -0700
commiteff8dd214e522d4eb6f56c8868ba92eb631dc914 (patch)
treeb4a5d3e041c0deedbe5751ace18f52cfcee7aed4
parentf99c5f56e119f89b69867a569af38faa7435e30c (diff)
downloadsimplejson-eff8dd214e522d4eb6f56c8868ba92eb631dc914.tar.gz
bump versions to 2.1.6
-rw-r--r--conf.py2
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/conf.py b/conf.py
index b157b07..991c693 100644
--- a/conf.py
+++ b/conf.py
@@ -44,7 +44,7 @@ copyright = '2011, Bob Ippolito'
# The short X.Y version.
version = '2.1'
# The full version, including alpha/beta/rc tags.
-release = '2.1.5'
+release = '2.1.6'
# 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
index e2e1cac..d554f9c 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '2.1.5'
+VERSION = '2.1.6'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
LONG_DESCRIPTION = open('README.rst', 'r').read()
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index dbabdb2..210b957 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.5'
+__version__ = '2.1.6'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',