From a4f740fb0fa7f9c6f5f27907e07c65fc331ef371 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Thu, 31 Jan 2019 01:10:15 -0800 Subject: [PATCH] Bump version to v0.6.4 and update changelog --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46bccb5..de44447 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.6.4 (2019-1-31) +- Fix bugs in `read_multiple_bytes` (thanks to @tsh56) +- Remove end-of-life Python versions 2.6, 3.2, and 3.3. Add CI tests for 3.6 +- Expose SchemaParser in Cython header + ## v0.6.3 (2018-01-14) - Bump bundled capnp version to v0.6.1 (thanks to @E8Yuval) - Fix a memleak in RemotePromise (thanks to @E8Yuval) diff --git a/setup.py b/setup.py index c1ddfdc..afb5d01 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ _this_dir = os.path.dirname(__file__) MAJOR = 0 MINOR = 6 -MICRO = 3 +MICRO = 4 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)