summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRune Halvorsen <runefh@gmail.com>2010-01-28 12:02:38 +0100
committerRune Halvorsen <runefh@gmail.com>2010-01-28 12:02:38 +0100
commit9e8ba4d88fa8171462b68925902d269251954f26 (patch)
tree209deabc9a84f3ed4403932e9d45f2cc2127836a
parentecbc3e8249e8dbd1edae92d166e16636969280a3 (diff)
downloadanyjson-9e8ba4d88fa8171462b68925902d269251954f26.tar.gz
Bumped version number, updated changelog0.2.3
-rw-r--r--CHANGELOG7
-rw-r--r--anyjson/__init__.py2
-rw-r--r--setup.py2
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b686f17..bfeface 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -27,4 +27,9 @@
* 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. \ No newline at end of file
+ exception during the install process.
+
+0.2.3
+
+ * Fixed bug #3
+ * Fixed bug in benchmarking script
diff --git a/anyjson/__init__.py b/anyjson/__init__.py
index fdfeece..b6a916c 100644
--- a/anyjson/__init__.py
+++ b/anyjson/__init__.py
@@ -3,7 +3,7 @@ interface"""
import sys
-__version__ = "0.2.2"
+__version__ = "0.2.3"
__author__ = "Rune Halvorsen <runefh@gmail.com>"
__homepage__ = "http://bitbucket.org/runeh/anyjson/"
__docformat__ = "restructuredtext"
diff --git a/setup.py b/setup.py
index cb3a264..b5048de 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
author = "Rune Halvorsen"
email = "runefh@gmail.com"
-version = "0.2.2"
+version = "0.2.3"
desc = """Wraps the best available JSON implementation available in a common
interface"""