Skip to content

Commit

Permalink
Version 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterDing committed Jan 30, 2023
1 parent d5564dc commit 0002a3a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.7.5 - 2023-01-30

### Fixed

- 修复安装失败。(#105)
- 修复用第三方下载器时进度条闪烁的问题。

### Changed

- 目前不支持 Python3.11

## v0.7.4 - 2022-11-10

### Changed
Expand Down
2 changes: 1 addition & 1 deletion baidupcs_py/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from baidupcs_py.baidupcs import BaiduPCS, BaiduPCSApi

__version__ = "0.7.4"
__version__ = "0.7.5"
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "BaiduPCS-Py"
homepage = "https://github.com/PeterDing/BaiduPCS-Py"
version = "0.7.4"
version = "0.7.5"
description = "Baidu Pcs Api and App"
authors = ["PeterDing <dfhayst@gmail.com>"]
license = "MIT"
Expand All @@ -15,11 +15,12 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
build = "build.py"

[tool.poetry.dependencies]
python = "^3.7"
python = ">=3.7, <3.11"
requests = ">=2.28"
requests-toolbelt = ">=0.10"
rich = ">=12.6"
Expand Down

0 comments on commit 0002a3a

Please sign in to comment.