diff --git a/CHANGELOG.md b/CHANGELOG.md index fb3e939..27712ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## Version 0.1.3 + +This version adds some bugfixes and new features. + +* Add the object manager interface to the service. (#14, #37) +* Allow coroutines in service methods. (#24, #27) +* Client: don't send method replies with `NO_REPLY_EXPECTED` message flag. (#22) +* Fix duplicate nodes in introspection. (#13) + ## Version 0.1.2 This version adds some bugfixes. diff --git a/docs/conf.py b/docs/conf.py index 5487949..c01c13e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '0.1.2' +release = '0.1.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 9231fe0..5d5e7da 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ EMAIL = 'tony@dubstepdish.com' AUTHOR = 'Tony Crisci' REQUIRES_PYTHON = '>=3.6.0' -VERSION = '0.1.2' +VERSION = '0.1.3' # What packages are required for this module to be executed? REQUIRED = []