From 7cf1145562e3a58f3d56f8a9e4e912e0fceaedbc Mon Sep 17 00:00:00 2001 From: Rune Halvorsen Date: Fri, 3 Dec 2010 14:53:06 +0100 Subject: [PATCH] Bumped version number --- CHANGELOG | 4 ++++ anyjson/__init__.py | 2 +- setup.py | 2 +- 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 " __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',