diff --git a/CHANGELOG.md b/CHANGELOG.md index ee45ec9..9464ead 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/setup.py b/setup.py index abbfc38..51a9fd3 100644 --- a/setup.py +++ b/setup.py @@ -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)