summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2017-06-19 11:19:49 -0700
committerBob Ippolito <bob@redivi.com>2017-06-19 11:19:49 -0700
commitfe3ab46207309c703ef011945ac08bbbeb4cc72c (patch)
tree6915553e61cc830bf51c930fc92be1c63cc58948
parent59e9bbf023cff1684786d7fb0ae3d0501f96ecb6 (diff)
downloadsimplejson-fix-173.tar.gz
v3.11.1fix-173
-rw-r--r--conf.py4
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/conf.py b/conf.py
index f779eb6..44451a8 100644
--- a/conf.py
+++ b/conf.py
@@ -36,7 +36,7 @@ master_doc = 'index'
# General substitutions.
project = 'simplejson'
-copyright = '2016, Bob Ippolito'
+copyright = '2017, Bob Ippolito'
# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
@@ -44,7 +44,7 @@ copyright = '2016, Bob Ippolito'
# The short X.Y version.
version = '3.11'
# The full version, including alpha/beta/rc tags.
-release = '3.11.0'
+release = '3.11.1'
# 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 7d73979..fd304f1 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.11.0'
+VERSION = '3.11.1'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
with open('README.rst', 'r') as f:
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index 8ba7b7a..bd144ff 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -97,7 +97,7 @@ Using simplejson.tool from the shell to validate and pretty-print::
Expecting property name: line 1 column 3 (char 2)
"""
from __future__ import absolute_import
-__version__ = '3.11.0'
+__version__ = '3.11.1'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',