diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09be35fa..4af00069 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12-dev'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 diff --git a/HISTORY.md b/HISTORY.md index 5a22d2d2..8bf98a5a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [4.1.0](https://github.com/uploadcare/pyuploadcare/compare/v4.0.0...v4.1.0) - 2023-07-17 +## [4.1.0](https://github.com/uploadcare/pyuploadcare/compare/v4.0.0...v4.1.0) - 2023-07-18 ### Added @@ -20,7 +20,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Bumped `httpx` dependency for py37+. - Bumped `yarl` dev dependency for py37+. - Bumped `coverage` dev dependency for py37+. -- Tests are now run against Python 3.11 and 3.12 (alpha) as well. The minimum supported version of Python remains 3.6. +- Tests are now run against Python 3.11 as well. The minimum supported version of Python remains 3.6. - Tests are now run against Django 4.0, 4.1 and 4.2 as well. The minimum supported version of Django remains 1.11. ## [4.0.0](https://github.com/uploadcare/pyuploadcare/compare/v3.2.0...v4.0.0) - 2022-12-26 diff --git a/pyproject.toml b/pyproject.toml index 9d4823dd..5ea7d7df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyuploadcare" -version = "4.0.0" +version = "4.1.0" description = "Python library for Uploadcare.com" authors = ["Uploadcare Inc "] readme = "README.md" diff --git a/pyuploadcare/__init__.py b/pyuploadcare/__init__.py index 993e7c13..5740c1b1 100644 --- a/pyuploadcare/__init__.py +++ b/pyuploadcare/__init__.py @@ -1,5 +1,5 @@ # isort: skip_file -__version__ = "4.0.0" +__version__ = "4.1.0" from pyuploadcare.resources.file import File # noqa: F401 from pyuploadcare.resources.file_group import FileGroup # noqa: F401