Skip to content

Commit

Permalink
🔖 v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aisk committed Aug 4, 2017
1 parent 7062fb7 commit 1b4de18
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
18 changes: 17 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
## [1.13.0] - 2017-08-4
## [2.0.0] - 2017-08-05
### Added
- leancloud.User.session_token property
### Fixed
- invalid timezone on leancloud.Object#created_at and leancloud.Object#updated_at
- leancloud.Query#get using get ACL permission, not find
### Removed
- leancloud.Engine#current_user (use leancloud.Engine#current.user instead)
- type_ param in leancloud.File constructor (use mime_type instead)
- type_ param in leancloud.File.create_with_url (use mime_type instead)
- leancloud.Object#fetch_when_save property (use fetch_when_save param in leancloud.Object#save function instead)
- leancloud.Object#attribute property
- leancloud.Relation#query not is a property, not a function
- leancloud.Query#does_not_exists (use leancloud.Query#does_not_exist instead)
- leancloud.Query#matched_key_in_query (use leancloud.Query#matches_key_in_query instead)

## [1.13.0] - 2017-08-04
### Added
- leancloud.Engine#wrap
- leancloud.Engine#register
Expand Down
2 changes: 1 addition & 1 deletion leancloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@


__author__ = 'asaka <[email protected]>'
__version__ = '1.13.0'
__version__ = '2.0.0'


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

setup(
name='leancloud',
version='1.13.0',
version='2.0.0',
description='LeanCloud Python SDK',
url='https://leancloud.cn/',
author='asaka',
Expand Down

0 comments on commit 1b4de18

Please sign in to comment.