summaryrefslogtreecommitdiff
path: root/simplejson/__init__.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2016-02-14 12:30:55 -0800
committerBob Ippolito <bob@redivi.com>2016-02-15 09:51:34 -0800
commit8aaf1ca7d6cda799997815591c1c82e70c51a633 (patch)
treec0a3471da60ae560dc1f43f0ffabfdbbff6b40e0 /simplejson/__init__.py
parent60227944e9879362f9a4e09dfaae605273cdfc8c (diff)
downloadsimplejson-8aaf1ca7d6cda799997815591c1c82e70c51a633.tar.gz
v3.8.2 - fix compiler warning, automated wheel builds for Windows and Macv3.8.2wheels
Diffstat (limited to 'simplejson/__init__.py')
-rw-r--r--simplejson/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index c448742..b7fe828 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -97,7 +97,7 @@ Using simplejson.tool from the shell to validate and pretty-print::
Expecting property name: line 1 column 3 (char 2)
"""
from __future__ import absolute_import
-__version__ = '3.8.1'
+__version__ = '3.8.2'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',