From a0d0f95c04da0693fc28ccce4e75b0d39826249a Mon Sep 17 00:00:00 2001 From: asaka Date: Fri, 8 Jul 2016 14:00:46 +0800 Subject: [PATCH] doc: release 1.6.1 --- changelog | 13 +++++++++++++ leancloud/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/changelog b/changelog index 6b6b3a66..cd9739e5 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,16 @@ +## [1.6.1] - 2016-07-08 +### Added +- leancloud.User.reset_password_by_sms_code +- add default value for leancloud.Object.get +### Updated +- refactor file upload process +- clean up leancloud.Object fields (reduce memory size) +- add type interface for python3.5's type announce + +## [1.6.0] - 2016-05-23 +### Updatred +- support python 3.5 + ## [1.5.1] - 2016-05-19 ### Fixed - fixed before update hook not word correctly diff --git a/leancloud/__init__.py b/leancloud/__init__.py index a63fd4a9..dfd395b9 100644 --- a/leancloud/__init__.py +++ b/leancloud/__init__.py @@ -40,7 +40,7 @@ __author__ = 'asaka ' -__version__ = '1.6.0' +__version__ = '1.6.1' __all__ = [ diff --git a/setup.py b/setup.py index 847d7427..96193cd6 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='leancloud-sdk', - version='1.6.0', + version='1.6.1', description='LeanCloud Python SDK', url='https://leancloud.cn/',