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

bump to v3.4.0

parent 07128c469925
Branches
No related tags found
No related merge requests found
Version 3.4.0 released 2014-04-02
* Native setuptools support re-introduced
https://github.com/simplejson/simplejson/pull/92
Version 3.3.3 released 2014-02-14
* Improve test suite's Python 3.4 compatibility
......
......@@ -42,5 +42,5 @@
# other places throughout the built documents.
#
# The short X.Y version.
version = '3.3'
version = '3.4'
# The full version, including alpha/beta/rc tags.
......@@ -46,5 +46,5 @@
# The full version, including alpha/beta/rc tags.
release = '3.3.3'
release = '3.4.0'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
......
#!/usr/bin/env python
from __future__ import with_statement
#
# To use setuptools commands such as bdist_egg, execute like this:
#
# python -c 'import setuptools; execfile("setup.py")' bdist_egg
#
import sys
try:
from setuptools import setup, Extension, Command
......@@ -16,7 +11,7 @@
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
VERSION = '3.3.3'
VERSION = '3.4.0'
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.3'
__version__ = '3.4.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