Bump version to v0.6.4 and update changelog

This commit is contained in:
Jason Paryani
2019-01-31 01:10:15 -08:00
parent e4d7e21a66
commit a4f740fb0f
2 changed files with 6 additions and 1 deletions

View File

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

View File

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