diff --git a/changelog b/changelog index 019b6d22..adf30a76 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,13 @@ +## [1.7.0] - 2016-10-31 +### Fixed +- leancloud.Notification now support fetch() +- allow return a nested structure of leancloud.Object in rpc call +### Added +- define cloud function with alternate function name +- support dev mode in leancloud.push.send +- leancloud.Engine#current request local variable +- session token WSGI middleware + ## [1.6.5] - 2016-09-27 ### Fixed - LeanEngine on_login / on_verified bugfix diff --git a/leancloud/__init__.py b/leancloud/__init__.py index ff1e5be0..c3fa0299 100644 --- a/leancloud/__init__.py +++ b/leancloud/__init__.py @@ -40,7 +40,7 @@ __author__ = 'asaka ' -__version__ = '1.6.5' +__version__ = '1.7.0' __all__ = [ diff --git a/setup.py b/setup.py index 94cb4bf5..480ecd73 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='leancloud-sdk', - version='1.6.5', + version='1.7.0', description='LeanCloud Python SDK', url='https://leancloud.cn/',