From 25e660ed34b6e820fd2efd6290101edc3d4aff22 Mon Sep 17 00:00:00 2001 From: Botberry Date: Mon, 23 Dec 2024 09:03:04 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.256.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ RELEASE.md | 5 ----- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bf64f4cff..a03927a1fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ CHANGELOG ========= +0.256.1 - 2024-12-23 +-------------------- + +This release updates Strawberry internally to no longer pass keywords arguments +to `pathlib.PurePath`. Support for supplying keyword arguments to +`pathlib.PurePath` is deprecated and scheduled for removal in Python 3.14 + +Contributed by [Jonathan Ehwald](https://github.com/DoctorJohn) via [PR #3738](https://github.com/strawberry-graphql/strawberry/pull/3738/) + + 0.256.0 - 2024-12-21 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 5ea3a9bed9..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,5 +0,0 @@ -Release type: patch - -This release updates Strawberry internally to no longer pass keywords arguments -to `pathlib.PurePath`. Support for supplying keyword arguments to -`pathlib.PurePath` is deprecated and scheduled for removal in Python 3.14 diff --git a/pyproject.toml b/pyproject.toml index f6e6800504..4a709ba9a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.256.0" +version = "0.256.1" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"