Bumped version and updated changelog

This commit is contained in:
Rune Halvorsen
2010-04-15 10:16:34 +02:00
parent 4eed7d3a4b
commit 2c5dceb2bd
3 changed files with 9 additions and 3 deletions
+7 -1
View File
@@ -25,7 +25,7 @@
0.2.2
* Fixed bug #2. Installation failed if there were noe compatible json
* Fixed bug #2. Installation failed if there were noe compatible json
implementations installed, because the module was loaeded, and threw import
exception during the install process.
@@ -33,3 +33,9 @@
* Fixed bug #3
* Fixed bug in benchmarking script
0.2.4
* Added support for py-yajl (Thanks Benjamin Anderson)
* Improved benchmark script to test serialization performance and
to use real life data for tests.
+1 -1
View File
@@ -3,7 +3,7 @@ interface"""
import sys
__version__ = "0.2.3"
__version__ = "0.2.4"
__author__ = "Rune Halvorsen <runefh@gmail.com>"
__homepage__ = "http://bitbucket.org/runeh/anyjson/"
__docformat__ = "restructuredtext"
+1 -1
View File
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
author = "Rune Halvorsen"
email = "runefh@gmail.com"
version = "0.2.3"
version = "0.2.4"
desc = """Wraps the best available JSON implementation available in a common
interface"""