diff --git a/conf.py b/conf.py index fcac8650fadb43830cc4d110240f5f655d6bba4b_Y29uZi5weQ==..6cb356da1ec94ec8fe2dabbb8466551afb43e321_Y29uZi5weQ== 100644 --- a/conf.py +++ b/conf.py @@ -36,7 +36,7 @@ # 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 @@ # 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 fcac8650fadb43830cc4d110240f5f655d6bba4b_c2V0dXAucHk=..6cb356da1ec94ec8fe2dabbb8466551afb43e321_c2V0dXAucHk= 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ 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 fcac8650fadb43830cc4d110240f5f655d6bba4b_c2ltcGxlanNvbi9fX2luaXRfXy5weQ==..6cb356da1ec94ec8fe2dabbb8466551afb43e321_c2ltcGxlanNvbi9fX2luaXRfXy5weQ== 100644 --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -97,7 +97,7 @@ 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',