Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions changelog
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
## [1.4.0] - 2014-02-02
### Added
- add leancloud.File.fetch function
- add leancloud.engine.before_update hook
- add leancloud.Object.save_all and leancloud.Object.destroy_all function
- add leancloud.Object.fetch_when_save flag
- ### Updated
- bugfix for leancloud.User._session_token is set to None when modify User object
- bugfix for query leancloud.Role object

## [1.3.12] - 2015-12-30
### Updated
- fixed engine hook current user's bug
- access to leancloud.Object.attributes will raise a warning

## [1.3.11] - 2015-12-17
### Updated
Expand Down
2 changes: 1 addition & 1 deletion leancloud/__init__.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,7 +35,7 @@


__author__ = 'asaka <[email protected]>'
__version__ = '1.3.12'
__version__ = '1.4.0'


__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,7 +5,7 @@

setup(
name='leancloud-sdk',
version='1.3.12',
version='1.4.0',
description='LeanCloud Python SDK',

url='https://leancloud.cn/',
Expand Down