diff --git a/changelog b/changelog index b3eca59b..f79cd733 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,11 @@ +## [1.10.0] - 2017-02-22 +### Added +- leancloud.Query#size_equal_to +- leancloud.Query#scan +- allow query leancloud.File +### Fixed +- cookie session middleware typo + ## [1.9.0] - 2016-12-13 ### Added - leancloud.Object#save now accept fetch_when_save as keyword parameter diff --git a/leancloud/__init__.py b/leancloud/__init__.py index 35200fbd..039bc7e1 100644 --- a/leancloud/__init__.py +++ b/leancloud/__init__.py @@ -40,7 +40,7 @@ __author__ = 'asaka ' -__version__ = '1.9.0' +__version__ = '1.10.0' __all__ = [ diff --git a/setup.py b/setup.py index 4635dd45..6c09f179 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='leancloud-sdk', - version='1.9.0', + version='1.10.0', description='LeanCloud Python SDK', url='https://leancloud.cn/', author='asaka',