From 239286d4ac7a6b14694c6e74580838709ea5de51 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Fri, 27 May 2016 17:21:24 -0700 Subject: [PATCH] Bump version to v0.5.8 and update CHANGELOG --- CHANGELOG.md | 14 ++++++++++++++ setup.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad13689..59936c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## v0.5.8 (2016-05-27) +- Fix build problem with Cython v0.24 +- Include the changelog in the manifest (should fix install problems if pandoc is present) +- Include the traceback in exceptions +- Make sure to encode to utf-8, not the default encoding (thanks to @novas0x2a) +- Add --libcapnp-url option in installer to allow installing arbitrary libcapnp versions +- Support mmap objects for reading with from_bytes (thanks to @bpiwowar) +- Change read_multiple and read_multiple_packed to copy by default +- Fix mistakenly discarding the file parameter on reads +- Add reraise_kj_exception to the prettyPrint functions. (thanks to @kdienes) +- Fix KjException init (missing wrapper). (thanks to @E8-Storage) +- Add `result_type` to InterfaceMethodSchema + + ## v0.5.7 (2015-06-16) - Update bundled libcapnp to v0.5.2 - Add warnings for using old restorer methods. You should use `bootstrap` instead diff --git a/setup.py b/setup.py index 6211e04..de30104 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ _this_dir = os.path.dirname(__file__) MAJOR = 0 MINOR = 5 -MICRO = 7 +MICRO = 8 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)