From c757257d8cf473cb6cd84c94a8ecd1db634b9cb4 Mon Sep 17 00:00:00 2001 From: tarsil Date: Wed, 11 Oct 2023 10:05:42 +0100 Subject: [PATCH 1/3] Enable Python 3.12 support --- .github/workflows/test-suite.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 45cace8..c0a6b86 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -17,7 +17,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"] services: diff --git a/pyproject.toml b/pyproject.toml index 66e21c9..53eb22f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", "Topic :: Internet :: WWW/HTTP", ] From 0609684b637836614e436094284e82fe42900199 Mon Sep 17 00:00:00 2001 From: Tiago Silva Date: Fri, 13 Oct 2023 21:56:10 +0100 Subject: [PATCH 2/3] Update __init__.py --- saffier/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saffier/__init__.py b/saffier/__init__.py index 6481834..105133b 100644 --- a/saffier/__init__.py +++ b/saffier/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.18.0" +__version__ = "1.0.0" from saffier.conf import settings from saffier.conf.global_settings import SaffierSettings From 2f9a9ff13ab9b674257bdb7a7e5fa89a5d986b11 Mon Sep 17 00:00:00 2001 From: Tiago Silva Date: Fri, 13 Oct 2023 21:57:51 +0100 Subject: [PATCH 3/3] Update release-notes.md --- docs/release-notes.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index d738f52..4209814 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,15 @@ # Release Notes +## 1.0.0 + +### Added + +- Support for Python 3.12 + +### Changed + +- Update base requirements. + ## 0.18.0 ### Added