summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG6
-rw-r--r--anyjson/__init__.py2
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3c814fd..ea7a65d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -59,4 +59,8 @@
0.3.2
* Added support for buffer objects
- \ No newline at end of file
+
+0.3.3
+
+ * Fixed bug in buffer object support related to differences between
+ stringIO and cStringIO
diff --git a/anyjson/__init__.py b/anyjson/__init__.py
index d0a243c..1f671be 100644
--- a/anyjson/__init__.py
+++ b/anyjson/__init__.py
@@ -3,7 +3,7 @@ interface"""
import sys
-VERSION = (0, 3, 2)
+VERSION = (0, 3, 3)
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Rune Halvorsen"
__contact__ = "runefh@gmail.com"