summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRune Halvorsen <runefh@gmail.com>2010-12-03 14:53:06 +0100
committerRune Halvorsen <runefh@gmail.com>2010-12-03 14:53:06 +0100
commit91b2910065363fdb96b69069f0078e36e908e3e8 (patch)
treedc3f5e3fbfca68befd3e63ef384b45bfeed161ca
parent81af6bbf1d032ccdbdcd66b29f6af7aeaaa4d8f5 (diff)
downloadanyjson-91b2910065363fdb96b69069f0078e36e908e3e8.tar.gz
Bumped version number0.3
-rw-r--r--CHANGELOG4
-rw-r--r--anyjson/__init__.py2
-rw-r--r--setup.py2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e785cac..a44218b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -46,3 +46,7 @@
with the stdlib json module. Note: The original methods are still
in place. Nothing from the 0.2.4 API is changed, removed or deprecated
in this release.
+
+0.3
+
+ * Added support for python3
diff --git a/anyjson/__init__.py b/anyjson/__init__.py
index 9ff7b44..ca1355a 100644
--- a/anyjson/__init__.py
+++ b/anyjson/__init__.py
@@ -3,7 +3,7 @@ interface"""
import sys
-__version__ = "0.2.5"
+__version__ = "0.3"
__author__ = "Rune Halvorsen <runefh@gmail.com>"
__homepage__ = "http://bitbucket.org/runeh/anyjson/"
__docformat__ = "restructuredtext"
diff --git a/setup.py b/setup.py
index ef2372a..4f601ce 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ except ImportError:
author = "Rune Halvorsen"
email = "runefh@gmail.com"
-version = "0.2.5"
+version = "0.3"
desc = """Wraps the best available JSON implementation available in a common interface"""
setup(name='anyjson',