summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2022-04-22 08:11:48 -0700
committerBob Ippolito <bob@redivi.com>2022-04-22 08:11:48 -0700
commit74c95b6d3cafd0b158ab7f8a3a066d0671e5c931 (patch)
tree4a38d6082d77c5aa7d5505226742b207c391b676
parentd8cee7b2c5696a76e2d0316188b100eea4264354 (diff)
downloadsimplejson-74c95b6d3cafd0b158ab7f8a3a066d0671e5c931.tar.gz
Update CHANGES.txt and bump version
-rw-r--r--.vscode/settings.json5
-rw-r--r--CHANGES.txt6
-rw-r--r--conf.py2
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
5 files changed, 12 insertions, 5 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index de288e1..ee3ad58 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,3 +1,4 @@
{
- "python.formatting.provider": "black"
-} \ No newline at end of file
+ "python.formatting.provider": "black",
+ "esbonio.sphinx.confDir": ""
+}
diff --git a/CHANGES.txt b/CHANGES.txt
index a1e4586..22d3ded 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,9 @@
+Version 3.17.7 released XXXX-XX-XX
+
+* Raise JSONDecodeError instead of ValueError in invalid unicode escape
+ sequence edge case
+ https://github.com/simplejson/simplejson/pull/298
+
Version 3.17.6 released 2021-11-15
* Declare support for Python 3.10 and add wheels
diff --git a/conf.py b/conf.py
index e26e22d..402899a 100644
--- a/conf.py
+++ b/conf.py
@@ -44,7 +44,7 @@ copyright = '2021, Bob Ippolito'
# The short X.Y version.
version = '3.17'
# The full version, including alpha/beta/rc tags.
-release = '3.17.6'
+release = '3.17.7'
# 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 1e0e477..7261f4d 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.6'
+VERSION = '3.17.7'
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 20327ea..4d0ab75 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.6'
+__version__ = '3.17.7'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',