diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5818e5ea..fe9fef5230 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ CHANGELOG ========= +0.88.0 - 2021-11-24 +------------------- + +This release adds support for AWS Chalice. A framework for deploying serverless applications using AWS. + +A view for aws chalice has been added to the strawberry codebase. +This view embedded in a chalice app allows anyone to get a GraphQL API working and hosted on AWS in minutes using a serverless architecture. + +Contributed by [Mark Sheehan](https://github.com/mcsheehan) [PR #923](https://github.com/strawberry-graphql/strawberry/pull/923/) + + 0.87.3 - 2021-11-23 ------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 89ef1ae906..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,6 +0,0 @@ -Release type: minor - -This release adds support for AWS Chalice. A framework for deploying serverless applications using AWS. - -A view for aws chalice has been added to the strawberry codebase. -This view embedded in a chalice app allows anyone to get a GraphQL API working and hosted on AWS in minutes using a serverless architecture. diff --git a/pyproject.toml b/pyproject.toml index 62255c5c7c..c9ca438bc0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.87.3" +version = "0.88.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"