# HG changeset patch # User Bob Ippolito <bob@redivi.com> # Date 1396470530 25200 # Wed Apr 02 13:28:50 2014 -0700 # Node ID 228952258d81c04bdc7115f711346707a4b2e9d6 # Parent 07128c469925dfc8258c4d3e2aa99d970b2a24b6 bump to v3.4.0 diff --git a/CHANGES.txt b/CHANGES.txt --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +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 diff --git a/conf.py b/conf.py --- a/conf.py +++ b/conf.py @@ -42,9 +42,9 @@ # 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. -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: diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1,11 +1,6 @@ #!/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: diff --git a/simplejson/__init__.py b/simplejson/__init__.py --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -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',