summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRune Halvorsen <runefh@gmail.com>2012-06-21 16:21:41 +0200
committerRune Halvorsen <runefh@gmail.com>2012-06-21 16:21:41 +0200
commitdc79d65000ba1727134ccde954f23f43806524da (patch)
tree2b391870d211a5a9cb4bc35e9051336f2b84822c
parentc344fe5dcaeb1d8e1ad4ab4dca08457bc1f7b55c (diff)
downloadanyjson-dc79d65000ba1727134ccde954f23f43806524da.tar.gz
Updated changelog and bumped version0.3.2
-rw-r--r--CHANGELOG7
-rw-r--r--anyjson/__init__.py2
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 7e75c64..3c814fd 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -54,4 +54,9 @@
0.3.1
* Added deprecation warning for cjson and made it the least preferred
- implementation. See: http://pypi.python.org/pypi/python-cjson/1.0.5 \ No newline at end of file
+ implementation. See: http://pypi.python.org/pypi/python-cjson/1.0.5
+
+0.3.2
+
+ * Added support for buffer objects
+ \ No newline at end of file
diff --git a/anyjson/__init__.py b/anyjson/__init__.py
index f254a42..2238a4c 100644
--- a/anyjson/__init__.py
+++ b/anyjson/__init__.py
@@ -3,7 +3,7 @@ interface"""
import sys
-VERSION = (0, 3, 1)
+VERSION = (0, 3, 2)
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Rune Halvorsen"
__contact__ = "runefh@gmail.com"