Merge branch 'feature/v0.5.6' into develop

This commit is contained in:
Jason Paryani
2015-04-13 14:53:48 -07:00
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
## v0.5.6 (2015-04-13)
- Fix a serious bug in TwoPartyServer that was preventing it from working when passed a string address.
- Fix bugs that were exposed by defining KJDEBUG (thanks @davidcarne for finding this)
## v0.5.5 (2015-03-06)
- Update bundled C++ libcapnp to v0.5.1.2 security release

View File

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