summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2020-07-16 08:44:55 -0700
committerBob Ippolito <bob@redivi.com>2020-07-16 08:45:11 -0700
commit540950455a6c1c7d8e7a59d695308c8b62c5413a (patch)
treefe26423074f6b9a5d85b959c1f80a1b0a592cf19
parentd420ed2a927ee51167f89d254ad534e718bf1ff6 (diff)
downloadsimplejson-540950455a6c1c7d8e7a59d695308c8b62c5413a.tar.gz
v3.17.1v3.17.1
-rw-r--r--CHANGES.txt9
-rw-r--r--conf.py4
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
4 files changed, 13 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index c1caa23..a4748f7 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,12 @@
+Version 3.17.1 released 2020-07-16
+
+* Added arm64 to build matrix
+ https://github.com/simplejson/simplejson/pull/264
+* No more bdist_wininst builds per PEP 527
+ https://github.com/simplejson/simplejson/pull/260
+* Minor grammatical issue fixed in README
+ https://github.com/simplejson/simplejson/pull/261
+
Version 3.17.0 released 2019-11-17
* Updated documentation to be Python 3 first, and
diff --git a/conf.py b/conf.py
index 7a49fff..a6c0605 100644
--- a/conf.py
+++ b/conf.py
@@ -36,7 +36,7 @@ master_doc = 'index'
# General substitutions.
project = 'simplejson'
-copyright = '2018, Bob Ippolito'
+copyright = '2020, Bob Ippolito'
# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
@@ -44,7 +44,7 @@ copyright = '2018, Bob Ippolito'
# The short X.Y version.
version = '3.17'
# The full version, including alpha/beta/rc tags.
-release = '3.17.0'
+release = '3.17.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 b4d2e68..04717d1 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.17.0'
+VERSION = '3.17.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 7b5687c..dc8858c 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -118,7 +118,7 @@ Serializing multiple objects to JSON lines (newline-delimited JSON)::
"""
from __future__ import absolute_import
-__version__ = '3.17.0'
+__version__ = '3.17.1'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',