From 4ea8f165f1eb8fa6907c9f8b79bbdf3e0af1042a Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Mon, 11 Dec 2023 10:02:25 +0100 Subject: [PATCH] Version 0.2.1 --- .github/workflows/tests.yml | 2 +- fastapi_storages/__init__.py | 2 +- pyproject.toml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index db1bdef..7febb28 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: "actions/checkout@v3" diff --git a/fastapi_storages/__init__.py b/fastapi_storages/__init__.py index d97bac9..d69d5cc 100644 --- a/fastapi_storages/__init__.py +++ b/fastapi_storages/__init__.py @@ -2,7 +2,7 @@ from .filesystem import FileSystemStorage from .s3 import S3Storage -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = [ "FileSystemStorage", "S3Storage", diff --git a/pyproject.toml b/pyproject.toml index 5eb08fd..ba20fbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Database", "Topic :: Database :: Database Engines/Servers", "Topic :: Internet",