From 70003aec66725f0c9c5eaa9518c1b3a13bac3d8a Mon Sep 17 00:00:00 2001 From: PeterDing Date: Mon, 4 Dec 2023 20:22:42 +0800 Subject: [PATCH] Version 0.6.2 --- .github/workflows/main.yml | 2 +- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 5 ++++- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bd09a9c..2a2e458 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-latest] - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] defaults: run: shell: bash diff --git a/CHANGELOG.md b/CHANGELOG.md index ac7093c..f41bf27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v0.6.2 - 2023-12-04 + +### Fixed + +- 修复上传链接超时 + +### Updated + +- 根新依赖 + ## v0.6.1 - 2023-05-09 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 2a3eae4..615f065 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "AliPCS-Py" homepage = "https://github.com/PeterDing/AliPCS-Py" -version = "0.6.1" +version = "0.6.2" description = "Ali Pcs Api and App" authors = ["PeterDing "] license = "MIT" @@ -12,9 +12,12 @@ classifiers = [ "Operating System :: Microsoft :: Windows", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", + "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] build = "build.py"