diff --git a/README.md b/README.md index f2951a275e..7972210566 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ _stack.yml_ resolver: lts-14.8 extra-deps: - - morpheus-graphql-0.10.0 + - morpheus-graphql-0.11.0 ``` As Morpheus is quite new, make sure stack can find morpheus-graphql by running `stack upgrade` and `stack update` diff --git a/changelog.md b/changelog.md index 4e61d0dafd..d165d74f7d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## 0.11.0 - Unreleased +## 0.11.0 - 01.05.2020 ### Breaking Changes @@ -43,14 +43,13 @@ - Instead of rejecting conflicting selections, they are merged (based on the GraphQL specification). - Support for input lists separated by newlines. thanks @charlescrain - conflicting variable , fragment ... validation -- issue #411: Aeson `FromJSON` `ToJSON` instances for `ID` +- issue #411: Aeson `FromJSON` `ToJSON` instances for `ID` ### minor - changes to internal types - fixed validation of apollo websockets requests - ## 0.10.0 - 07.01.2020 ### Breaking Changes diff --git a/docs/index.md b/docs/index.md index 074e573a2b..decff88563 100644 --- a/docs/index.md +++ b/docs/index.md @@ -33,7 +33,7 @@ _stack.yml_ resolver: lts-14.8 extra-deps: - - morpheus-graphql-0.10.0 + - morpheus-graphql-0.11.0 ``` As Morpheus is quite new, make sure stack can find morpheus-graphql by running `stack upgrade` and `stack update` diff --git a/examples/package.yaml b/examples/package.yaml index d815ffc3a1..04c64ecd94 100644 --- a/examples/package.yaml +++ b/examples/package.yaml @@ -16,7 +16,7 @@ dependencies: - containers >= 0.4.2.1 && < 0.7 - mtl >= 2.0 && <= 2.3 - websockets >= 0.11.0 && <= 0.13 - - morpheus-graphql >= 0.10.0 + - morpheus-graphql >= 0.11.0 - scotty - wai - warp diff --git a/morpheus-graphql.cabal b/morpheus-graphql.cabal index 53f40bee4f..c1c309d837 100644 --- a/morpheus-graphql.cabal +++ b/morpheus-graphql.cabal @@ -4,10 +4,10 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: daf2c440da655b06dcebb11fdd64060a04fee75fd9588a437428db79c05c7b4d +-- hash: e10665dda7dcb75f84d447086dcbd786a36aea915278bd6bbf4285a01cf9d21a name: morpheus-graphql -version: 0.10.1 +version: 0.11.0 synopsis: Morpheus GraphQL description: Build GraphQL APIs with your favourite functional language! category: web, graphql diff --git a/package.yaml b/package.yaml index 2bb68c4400..b0e1a06260 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql -version: 0.10.1 +version: 0.11.0 github: "nalchevanidze/morpheus-graphql" license: MIT author: "Daviti Nalchevanidze" diff --git a/release.sh b/release.sh index d91c620e4f..9e19643ae6 100644 --- a/release.sh +++ b/release.sh @@ -1,5 +1,5 @@ # vesrion -export MORPHEUS_VESRION="0.10.1" +export MORPHEUS_VESRION="0.11.0" export MORPHEUS_RELEASE_NAME="morpheus-graphql-$MORPHEUS_VESRION" export MORPHEUS_RELEASE_TAR="$MORPHEUS_RELEASE_NAME.tar.gz" diff --git a/stack-nightly.yaml b/stack-nightly.yaml index 99814e83a9..f1190bd7f9 100644 --- a/stack-nightly.yaml +++ b/stack-nightly.yaml @@ -1,5 +1,5 @@ # ghc-8.8.1 -resolver: nightly-2020-04-10 +resolver: nightly-2020-05-01 packages: - examples