Skip to content

Commit 0e2021d

Browse files
committed
Update changelog
1 parent 2eb6e75 commit 0e2021d

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

ChangeLog.rst

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,33 @@
11
0.5.0
22
======
33

4-
0.5 is important step toward 1.0. There are some deprecations.
5-
Please read changes carefully.
4+
There are some deprecations. Please read changes carefully.
65

76
Changes
87
-------
98

10-
* Drop Python 2.6 and 3.2 support
9+
* Drop Python 2.6 and ~3.4 support. Python 2.7 and 3.5+ are supported.
1110

1211
* Deprecate useless custom exceptions. Use ValueError instead of PackValueError,
1312
Exception instead of PackException and UnpackException, etc...
1413
See msgpack/exceptions.py
1514

16-
* Add `strict_types` option to packer. It can be used to serialize subclass of
15+
* Add *strict_types* option to packer. It can be used to serialize subclass of
1716
builtin types. For example, when packing object which type is subclass of dict,
18-
`default()` is called.
17+
``default()`` is called. ``default()`` is called for tuple too.
1918

2019
* Pure Python implementation supports packing memoryview object.
2120

21+
* Support packing bytearray.
22+
23+
* Add ``Unpacker.tell()``. And ``write_bytes`` option is deprecated.
24+
25+
26+
Bugs fixed
27+
----------
28+
29+
* Fixed zero length raw can't be decoded when encoding is specified. (#236)
30+
2231

2332
0.4.8
2433
=====

0 commit comments

Comments
 (0)