From 1b88a84451a3edaad567c6395433e0a3cb75ef2f Mon Sep 17 00:00:00 2001 From: Botberry Date: Wed, 28 Jun 2023 22:09:56 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.192.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 18 ++++++++++++++++++ RELEASE.md | 13 ------------- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 14 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d07e85d67..da3fc66e46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ CHANGELOG ========= +0.192.0 - 2023-06-28 +-------------------- + +This release introduces a new command called `upgrade`, this command can be used +to run codemods on your codebase to upgrade to the latest version of Strawberry. + +At the moment we only support upgrading unions to use the new syntax with +annotated, but in future we plan to add more commands to help with upgrading. + +Here's how you can use the command to upgrade your codebase: + +```shell +strawberry upgrade annotated-union . +``` + +Contributed by [Patrick Arminio](https://github.com/patrick91) via [PR #2886](https://github.com/strawberry-graphql/strawberry/pull/2886/) + + 0.191.0 - 2023-06-28 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index fe575df8d1..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,13 +0,0 @@ -Release type: minor - -This release introduces a new command called `upgrade`, this command can be used -to run codemods on your codebase to upgrade to the latest version of Strawberry. - -At the moment we only support upgrading unions to use the new syntax with -annotated, but in future we plan to add more commands to help with upgrading. - -Here's how you can use the command to upgrade your codebase: - -```shell -strawberry upgrade annotated-union . -``` diff --git a/pyproject.toml b/pyproject.toml index 5105b5ef11..a01e00060b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.191.0" +version = "0.192.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"