From aeb63ee451732b1e77008c28153380d8dd0fda20 Mon Sep 17 00:00:00 2001 From: Bob Ippolito Date: Thu, 6 Apr 2023 12:00:56 -0700 Subject: v3.19.1 Signed-off-by: Bob Ippolito --- CHANGES.txt | 2 +- conf.py | 2 +- setup.py | 2 +- simplejson/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index c3e176c..8e5b1f7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -Version 3.19.0 released 2023-04-06 +Version 3.19.1 released 2023-04-06 * This release contains security hardening measures based on recommendations by a security audit sponsored by OSTIF and conducted by X41 D-Sec GmbH. diff --git a/conf.py b/conf.py index 5a2dded..3d39694 100644 --- a/conf.py +++ b/conf.py @@ -44,7 +44,7 @@ copyright = '2023, Bob Ippolito' # The short X.Y version. version = '3.19' # The full version, including alpha/beta/rc tags. -release = '3.19.0' +release = '3.19.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 3ed60f7..842c8f8 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.4' +VERSION = '3.19.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 206e22d..7e533a2 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.19.0' +__version__ = '3.19.1' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', -- cgit v1.2.1