Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 3.0 #557

Merged
merged 1 commit into from
Apr 8, 2024
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 number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [3.0.0] - 2022-11-24

## Change

- Drop support for python 2.7 and 3.5

## Fixed

- Require phone_number when verify sms code
- Pinned urllib3 to 1.x

## [2.9.12] - 2022-11-24

## Fixed
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name='leancloud',
version='2.9.12',
version='3.0.0',
description='LeanCloud Python SDK',
url='https://leancloud.cn/',
author='asaka',
Expand All @@ -33,8 +33,8 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.9',
],
keywords='Leancloud SDK',
packages=find_packages(exclude=['docs', 'tests*']),
Expand Down
Loading