Bump version to v0.5.9 and update CHANGELOG

This commit is contained in:
Jason Paryani
2016-07-07 12:15:14 -07:00
parent da233c46ad
commit 3efb3f41f0
2 changed files with 7 additions and 1 deletions

View File

@@ -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)

View File

@@ -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)