Skip to content
Snippets Groups Projects
Commit e16220dfb3ea authored by Bob Ippolito's avatar Bob Ippolito
Browse files

Update version to 3.8.1

parent 2a40c1bb6f12
No related branches found
No related tags found
No related merge requests found
Version 3.8.0 released 2015-XX-XX
Version 3.8.1 released 2015-XX-XX
* Fix typo in keyword argument name introduced in 3.8.0
https://github.com/simplejson/simplejson/pull/123
Version 3.8.0 released 2015-07-18
* New iterable_as_array encoder option to perform lazy serialization of
any iterable objects, without having to convert to tuple or list.
......
......@@ -44,7 +44,7 @@
# The short X.Y version.
version = '3.8'
# The full version, including alpha/beta/rc tags.
release = '3.8.0'
release = '3.8.1'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
......
......@@ -11,7 +11,7 @@
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
VERSION = '3.8.0'
VERSION = '3.8.1'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
with open('README.rst', 'r') as f:
......
......@@ -97,7 +97,7 @@
Expecting property name: line 1 column 3 (char 2)
"""
from __future__ import absolute_import
__version__ = '3.8.0'
__version__ = '3.8.1'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment