From 3efb3f41f08748b23c1ed97d44f3c32724ddfa29 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Thu, 7 Jul 2016 12:15:14 -0700 Subject: [PATCH] Bump version to v0.5.9 and update CHANGELOG --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59936c9..f224895 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.5.9 (2016-07-07) +- Make the event loop be lazy initialized +- Add support for segment (de)serialization (thanks to @gcv). See to_segments/from_segments methods. +- Fix response objects not referencing parents correctly +- Add test for large reads + ## 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) diff --git a/setup.py b/setup.py index de30104..7881bb4 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ _this_dir = os.path.dirname(__file__) MAJOR = 0 MINOR = 5 -MICRO = 8 +MICRO = 9 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)