summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRune Halvorsen <runefh@gmail.com>2012-06-21 17:45:58 +0200
committerRune Halvorsen <runefh@gmail.com>2012-06-21 17:45:58 +0200
commitf9e17acc73394e823272905dd252cc122b72d3a6 (patch)
treeb20ed31fb3e96c0360111df6bc85bbbf56443328
parentc32edef91e221265428a08dd46263421e302eb96 (diff)
parentdc79d65000ba1727134ccde954f23f43806524da (diff)
downloadanyjson-f9e17acc73394e823272905dd252cc122b72d3a6.tar.gz
Merged in asksol/anyjson (pull request #3)
-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 0aee329..d0a243c 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"