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

update CHANGES.txt for v3.3.2

parent 0fe327bd94b1
No related branches found
No related tags found
No related merge requests found
Version 3.3.2 released 2014-01-06
* Docstring fix for decoded string types
https://github.com/simplejson/simplejson/pull/82
Version 3.3.1 released 2013-10-05
* JSONDecodeError exceptions can now be pickled
......
......@@ -36,7 +36,7 @@
# General substitutions.
project = 'simplejson'
copyright = '2013, Bob Ippolito'
copyright = '2014, Bob Ippolito'
# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
......@@ -44,7 +44,7 @@
# The short X.Y version.
version = '3.3'
# The full version, including alpha/beta/rc tags.
release = '3.3.1'
release = '3.3.2'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
......
......@@ -8,7 +8,7 @@
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
VERSION = '3.3.1'
VERSION = '3.3.2'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
with open('README.rst', 'r') as f:
......
......@@ -98,7 +98,7 @@
Expecting property name: line 1 column 3 (char 2)
"""
from __future__ import absolute_import
__version__ = '3.3.1'
__version__ = '3.3.2'
__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