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

version and changelog bump

parent cbc46183b620
No related branches found
No related tags found
No related merge requests found
Version 2.4.0 released 2012-03-XX
* New bigint_as_string option for encoder to trade JavaScript number precision
issues for type issues.
https://github.com/simplejson/simplejson/issues/31
Version 2.3.3 released 2012-02-27 Version 2.3.3 released 2012-02-27
* Allow unknown numerical types for indent parameter * Allow unknown numerical types for indent parameter
......
...@@ -42,5 +42,5 @@ ...@@ -42,5 +42,5 @@
# other places throughout the built documents. # other places throughout the built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '2.3' version = '2.4'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
...@@ -46,5 +46,5 @@ ...@@ -46,5 +46,5 @@
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '2.3.3' release = '2.4.0'
# There are two options for replacing |today|: either, you set today to some # There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used: # non-false value, then it is used:
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
DistutilsPlatformError DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info') IS_PYPY = hasattr(sys, 'pypy_translation_info')
VERSION = '2.3.3' VERSION = '2.4.0'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python" DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
LONG_DESCRIPTION = open('README.rst', 'r').read() LONG_DESCRIPTION = open('README.rst', 'r').read()
......
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
$ echo '{ 1.2:3.4}' | python -m simplejson.tool $ echo '{ 1.2:3.4}' | python -m simplejson.tool
Expecting property name: line 1 column 2 (char 2) Expecting property name: line 1 column 2 (char 2)
""" """
__version__ = '2.3.3' __version__ = '2.4.0'
__all__ = [ __all__ = [
'dump', 'dumps', 'load', 'loads', 'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment