From 4d098a56628f519e806c0c1ceceb1ce1b6e0d11c Mon Sep 17 00:00:00 2001 From: Bob Ippolito Date: Sun, 5 Feb 2023 11:06:39 -0800 Subject: Bump version and update CHANGES --- CHANGES.txt | 5 +++++ conf.py | 2 +- setup.py | 2 +- simplejson/__init__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index e1185d7..c798b8f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +Version 3.18.4 released 2023-XX-XX + +* Test the sdist to prevent future regressions + https://github.com/simplejson/simplejson/pull/311 + Version 3.18.3 released 2023-02-05 * Fix regression in sdist archive diff --git a/conf.py b/conf.py index e3b892b..921bbef 100644 --- a/conf.py +++ b/conf.py @@ -44,7 +44,7 @@ copyright = '2023, Bob Ippolito' # The short X.Y version. version = '3.18' # The full version, including alpha/beta/rc tags. -release = '3.18.3' +release = '3.18.4' # 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 8209f88..3ed60f7 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.18.3' +VERSION = '3.18.4' 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 993d64d..47e49a3 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.18.3' +__version__ = '3.18.4' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', -- cgit v1.2.1