Merge branch 'release/0.5.1' into develop

This commit is contained in:
Jason Paryani
2014-12-28 00:11:08 -08:00
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
## v0.5.1 (2014-12-27)
- Remove installation dependency on cython. We now have no dependencies since libcapnp will automatically build as well.
## v0.5.0 (2014-12-15)
- Timer class `capnp.getTimer()`
- pycapnp is now thread-safe and allows an event loop to be run in each thread

View File

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