summaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2018-01-05 19:16:14 +0900
committerINADA Naoki <songofacandy@gmail.com>2018-01-05 19:16:14 +0900
commit0e2021d3a3d1218ca191f4e802df0af3bbfaa51f (patch)
treee1a99b092f309782cf61d05eb3438e26ebb06ab7 /ChangeLog.rst
parent2eb6e75db1d4b4e30997aa88f9e904dc462a28da (diff)
downloadmsgpack-python-0e2021d3a3d1218ca191f4e802df0af3bbfaa51f.tar.gz
Update changelog
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst19
1 files changed, 14 insertions, 5 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 73ffc30..ed0f92e 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,24 +1,33 @@
0.5.0
======
-0.5 is important step toward 1.0. There are some deprecations.
-Please read changes carefully.
+There are some deprecations. Please read changes carefully.
Changes
-------
-* Drop Python 2.6 and 3.2 support
+* Drop Python 2.6 and ~3.4 support. Python 2.7 and 3.5+ are supported.
* Deprecate useless custom exceptions. Use ValueError instead of PackValueError,
Exception instead of PackException and UnpackException, etc...
See msgpack/exceptions.py
-* Add `strict_types` option to packer. It can be used to serialize subclass of
+* Add *strict_types* option to packer. It can be used to serialize subclass of
builtin types. For example, when packing object which type is subclass of dict,
- `default()` is called.
+ ``default()`` is called. ``default()`` is called for tuple too.
* Pure Python implementation supports packing memoryview object.
+* Support packing bytearray.
+
+* Add ``Unpacker.tell()``. And ``write_bytes`` option is deprecated.
+
+
+Bugs fixed
+----------
+
+* Fixed zero length raw can't be decoded when encoding is specified. (#236)
+
0.4.8
=====