From 44c2b8dfe6c339f879de4f2eb4edcebcd78d8100 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Mon, 10 Apr 2017 20:37:16 -0700 Subject: [PATCH] Bump version to v0.5.11 and update CHANGELOG --- CHANGELOG.md | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a06354..c37efaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/setup.py b/setup.py index 25cbaca..495a228 100644 --- a/setup.py +++ b/setup.py @@ -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)