From cdf0278edf834612948de22b3cbec39a0babccab Mon Sep 17 00:00:00 2001 From: Botberry Date: Sat, 1 Jun 2024 13:27:40 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.234.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 ++++++++++++++++ RELEASE.md | 11 ----------- pyproject.toml | 2 +- 3 files changed, 17 insertions(+), 12 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 54b838f82c..68d52ac73a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ CHANGELOG ========= +0.234.0 - 2024-06-01 +-------------------- + +This release separates the `relay.ListConnection` logic that calculates the +slice of the nodes into a separate function. + +This allows for easier reuse of that logic for other places/libraries. + +The new function lives in the `strawberry.relay.utils` and can be used by +calling `SliceMetadata.from_arguments`. + +This has no implications to end users. + +Contributed by [Thiago Bellini Ribeiro](https://github.com/bellini666) via [PR #3530](https://github.com/strawberry-graphql/strawberry/pull/3530/) + + 0.233.3 - 2024-05-31 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 0bd566451a..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,11 +0,0 @@ -Release type: minor - -This release separates the `relay.ListConnection` logic that calculates the -slice of the nodes into a separate function. - -This allows for easier reuse of that logic for other places/libraries. - -The new function lives in the `strawberry.relay.utils` and can be used by -calling `SliceMetadata.from_arguments`. - -This has no implications to end users. diff --git a/pyproject.toml b/pyproject.toml index 63a203ed8e..d18b0e7fa7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.233.3" +version = "0.234.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"