summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2014-04-02 13:28:50 -0700
committerBob Ippolito <bob@redivi.com>2014-04-02 13:28:50 -0700
commit6175d2919e8a24260cfce3c489ba7d0a0bdb8e84 (patch)
tree0233380e4886981646ae54c29ade727e9a203dc5
parent85c57048bf308d7ad74a1a50d8c54a57c9707a8f (diff)
downloadsimplejson-6175d2919e8a24260cfce3c489ba7d0a0bdb8e84.tar.gz
bump to v3.4.0v3.4.0
-rw-r--r--CHANGES.txt5
-rw-r--r--conf.py4
-rw-r--r--setup.py7
-rw-r--r--simplejson/__init__.py2
4 files changed, 9 insertions, 9 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index ee64c8a..7c432ef 100644
--- 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
index 58038a8..cd66248 100644
--- a/conf.py
+++ b/conf.py
@@ -42,9 +42,9 @@ copyright = '2014, Bob Ippolito'
# 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
index c2ec21b..30b4f31 100644
--- 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 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
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
index f76ce22..702ddab 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -98,7 +98,7 @@ Using simplejson.tool from the shell to validate and pretty-print::
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',