Bump version to v0.5.11 and update CHANGELOG

This commit is contained in:
Jason Paryani
2017-04-10 20:37:16 -07:00
parent ed06d6533b
commit 44c2b8dfe6
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
## v0.5.11 (2017-04-10)
- Make enums hashable (thanks to @madeleine-empirical)
- Rework logic on when to build bundled libcapnp. Fixes cross-compilation (thanks to @benizl)
- Add traversal_limit_in_words and nesting_limit to RPC classes (thanks to @asilversempirical)
- Include class attributes in __dir__. This allows for code completion of class methods (thanks to @chaoflow )
- Allow setting lists with python tuples (thanks to @chaoflow)
- Fix traversal_limit_in_words and nesting_limit being ignored by `from_bytes` (thanks to @plesner)
## v0.5.10 (2016-11-28)
- Fix bug that prevented event loop from actually being lazy initialized
- Fix possible recursive loop in KjException

View File

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