diff --git a/changelog b/changelog index adf30a76..7bd29eaa 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,9 @@ +## [1.8.0] - 2016-11-15 +### Added +- leancloud.User#refresh_session_token() +- leancloud.User#is_authenticated() +- keep alive on LeanCloud API Server HTTP connections + ## [1.7.0] - 2016-10-31 ### Fixed - leancloud.Notification now support fetch() diff --git a/leancloud/__init__.py b/leancloud/__init__.py index c3fa0299..f5c5fe48 100644 --- a/leancloud/__init__.py +++ b/leancloud/__init__.py @@ -40,7 +40,7 @@ __author__ = 'asaka ' -__version__ = '1.7.0' +__version__ = '1.8.0' __all__ = [ diff --git a/setup.py b/setup.py index 480ecd73..225ea446 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='leancloud-sdk', - version='1.7.0', + version='1.8.0', description='LeanCloud Python SDK', url='https://leancloud.cn/',