diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 33762db..74a16bc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ graphql-api changelog ===================== -$next (yyyy-mm-dd) +0.3.0 (2018-02-08) ================== Breaking changes @@ -17,9 +17,11 @@ Improvements ------------ * Now support GHC 8.2 as well as 8.0.2 and later +* Added support for anonymous queries (thanks `@sunwukonga`_) .. _`#118`: https://github.com/jml/graphql-api/issues/118 .. _`#149`: https://github.com/haskell-graphql/graphql-api/issues/149 +.. _`@sunwukonga`: https://github.com/sunwukonga v0.2.0 (2017-10-12) =================== diff --git a/graphql-api.cabal b/graphql-api.cabal index eb1f017..45477b6 100644 --- a/graphql-api.cabal +++ b/graphql-api.cabal @@ -2,26 +2,34 @@ -- -- see: https://github.com/sol/hpack -- --- hash: 78a5a4f0c4375f8d03bffd738aeb76a00fdf535cd6bc2e07cdaa13de38b1e614 +-- hash: 2160ff0226a0b10f7166ddbcf09ec6f79dfddfd66c81244898fb1afabe36bcf8 name: graphql-api -version: 0.2.0 +version: 0.3.0 synopsis: GraphQL API -description: Please see README.md +description: Implement [GraphQL](http://graphql.org/) servers in Haskell. + . + Provides a Servant-like type-based API for defining GraphQL schemas and + implementing handlers for those schemas. + . + See [README.md](https://github.com/haskell-graphql/graphql-api#graphql-api) for more details. category: Web stability: unstable -homepage: https://github.com/jml/graphql-api#readme -bug-reports: https://github.com/jml/graphql-api/issues -author: Jonathan M. Lange +homepage: https://github.com/haskell-graphql/graphql-api#readme +bug-reports: https://github.com/haskell-graphql/graphql-api/issues +author: Jonathan M. Lange, Tom Hunger maintainer: Jonathan M. Lange , Tom Hunger license: Apache license-file: LICENSE.Apache-2.0 build-type: Simple cabal-version: >= 1.10 +extra-source-files: + CHANGELOG.rst + source-repository head type: git - location: https://github.com/jml/graphql-api + location: https://github.com/haskell-graphql/graphql-api library hs-source-dirs: diff --git a/package.yaml b/package.yaml index e49b469..be3718c 100644 --- a/package.yaml +++ b/package.yaml @@ -1,14 +1,22 @@ name: graphql-api -version: 0.2.0 +version: 0.3.0 synopsis: GraphQL API -description: Please see README.md -author: Jonathan M. Lange +description: | + Implement [GraphQL](http://graphql.org/) servers in Haskell. + + Provides a Servant-like type-based API for defining GraphQL schemas and + implementing handlers for those schemas. + + See [README.md](https://github.com/haskell-graphql/graphql-api#graphql-api) for more details. +author: Jonathan M. Lange, Tom Hunger maintainer: Jonathan M. Lange , Tom Hunger license: Apache license-file: LICENSE.Apache-2.0 -github: jml/graphql-api +github: haskell-graphql/graphql-api category: Web stability: unstable +extra-source-files: + - CHANGELOG.rst # NB the "redundant constraints" warning is a GHC bug: https://ghc.haskell.org/trac/ghc/ticket/11099 ghc-options: -Wall -fno-warn-redundant-constraints