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

bump version to 2.3.0

parent 2b5d60612b11
No related branches found
No related tags found
No related merge requests found
Version 2.3.0 released 2011-11-18
* Any objects with _asdict() methods are now considered for
namedtuple_as_object.
https://github.com/simplejson/simplejson/pull/22
Version 2.2.1 released 2011-09-06
* Fix MANIFEST.in issue when building a sdist from a sdist.
......
......@@ -42,5 +42,5 @@
# other places throughout the built documents.
#
# The short X.Y version.
version = '2.2'
version = '2.3'
# The full version, including alpha/beta/rc tags.
......@@ -46,5 +46,5 @@
# The full version, including alpha/beta/rc tags.
release = '2.2.1'
release = '2.3.0'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
......
......@@ -7,7 +7,7 @@
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
VERSION = '2.2.1'
VERSION = '2.3.0'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
LONG_DESCRIPTION = open('README.rst', 'r').read()
......
......@@ -97,7 +97,7 @@
$ echo '{ 1.2:3.4}' | python -m simplejson.tool
Expecting property name: line 1 column 2 (char 2)
"""
__version__ = '2.2.1'
__version__ = '2.3.0'
__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