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

chore: prepare release #558

Merged
merged 4 commits into from
Jun 28, 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
10 changes: 8 additions & 2 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## [3.0.0] - 2022-11-24
## [3.0.1] - 2024-06-25

## Fixed

- Enable TCP keepalive socket option to fix "Connection reset by peer" problem. https://github.com/psf/requests/issues/4664

## [3.0.0] - 2024-04-08

## Change

Expand Down Expand Up @@ -37,7 +43,7 @@
### Fixed

- created_at and updated_at were missing on LCFile.
- updated_at was missing on new created LCObject.
- updated_at was missing on new created LCObject.

## [2.9.8] - 2021-12-10

Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ arrow>=1.0.0,<2.0.0; python_version >= '3.6'
iso8601>=0.1.14
six>=1.11.0
qiniu>=7.3.1
requests>=2.25.1
requests-toolbelt>=1.0.0
urllib3<2
requests<=2.31.0
urllib3<=1.26.18
requests-toolbelt==1.0.0
Werkzeug>=0.16.0,<2.0.0
secure-cookie>=0.1.0,<1.0.0
gevent>=22.10.2,<23.0.0
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='3.0.0',
version='3.0.1',
description='LeanCloud Python SDK',
url='https://leancloud.cn/',
author='asaka',
Expand Down
Loading