Merge branch 'feature/v0.5.2' into develop

This commit is contained in:
Jason Paryani
2015-02-20 17:29:06 -08:00
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
## v0.5.2 (2015-02-20)
- Add read\_multiple\_bytes/read\_multiple\_bytes\_packed methods
- Added Python 3.4 to the travis build matrix
- Bump version for bundled C++ libcapnp to v0.5.1
## v0.5.1 (2014-12-27)
- Remove installation dependency on cython. We now have no dependencies since libcapnp will automatically build as well.

View File

@@ -32,7 +32,7 @@ _this_dir = os.path.dirname(__file__)
MAJOR = 0
MINOR = 5
MICRO = 1
MICRO = 2
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)