summaryrefslogtreecommitdiff
path: root/simplejson
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2023-02-05 09:31:07 -0800
committerBob Ippolito <bob@redivi.com>2023-02-05 09:31:17 -0800
commit08991e091d314e0a200711e0b7b401fb6970d868 (patch)
treeddedff4267629f4e10441a45126bfc62077def53 /simplejson
parent64f12484892079e175c7636d006cd74f04e26461 (diff)
downloadsimplejson-08991e091d314e0a200711e0b7b401fb6970d868.tar.gz
Fix #309. Build sdist without any overrides
Diffstat (limited to 'simplejson')
-rw-r--r--simplejson/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index 11294ee..993d64d 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.2'
+__version__ = '3.18.3'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',