From 1e517d92a308251b331a24a0cc6a761d67a7fa47 Mon Sep 17 00:00:00 2001 From: Evgeniy Kirov Date: Mon, 17 Jul 2023 12:44:39 +0200 Subject: [PATCH 1/2] bump version 4.0.0 -> 4.1.0 --- HISTORY.md | 2 +- pyproject.toml | 2 +- pyuploadcare/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 5a22d2d2..9753b72b 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 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 From ecbffb3fb652bd792512a092f7ff565ba9751c6c Mon Sep 17 00:00:00 2001 From: Evgeniy Kirov Date: Tue, 18 Jul 2023 12:35:38 +0200 Subject: [PATCH 2/2] Removed Python 3.12 from test pipeline due to https://github.com/yaml/pyyaml/issues/724 --- .github/workflows/test.yml | 2 +- HISTORY.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 9753b72b..8bf98a5a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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