From 2133fd725d64c45977ca90d5ca31afc074a1cd76 Mon Sep 17 00:00:00 2001 From: Botberry Date: Tue, 12 Nov 2024 13:10:30 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++++++ RELEASE.md | 4 ---- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 331768e..a6fabad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ CHANGELOG ========= +0.5.0 - 2024-11-12 +------------------ + +Add an optional function to exclude relationships from relay pagination and use traditional strawberry lists. +Default behavior preserves original behavior for backwords compatibilty. + +Contributed by [Juniper](https://github.com/fruitymedley) via [PR #168](https://github.com/strawberry-graphql/strawberry-sqlalchemy/pull/168/) + + 0.4.5 - 2024-10-17 ------------------ diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 987f53b..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,4 +0,0 @@ -Release type: minor - -Add an optional function to exclude relationships from relay pagination and use traditional strawberry lists. -Default behavior preserves original behavior for backwords compatibilty. diff --git a/pyproject.toml b/pyproject.toml index 3b22b8a..bc848e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-sqlalchemy-mapper" packages = [ { include = "strawberry_sqlalchemy_mapper", from = "src" } ] -version = "0.4.5" +version = "0.5.0" description = "A library for autogenerating Strawberry GraphQL types from SQLAlchemy models." authors = ["Tim Dumol "] license = "MIT"