From a0e76aeeced85f9e24975cf636300fd6cfb9c794 Mon Sep 17 00:00:00 2001 From: Wu Yun Date: Mon, 8 Apr 2024 14:12:51 +0800 Subject: [PATCH] release: 3.0 --- changelog | 11 +++++++++++ setup.py | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/changelog b/changelog index 0cacdb6..9622edb 100644 --- a/changelog +++ b/changelog @@ -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 diff --git a/setup.py b/setup.py index 9d7cb02..e926572 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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*']),