From 136b60f5b7bf48ab172b2e2fae40b2732ee716a8 Mon Sep 17 00:00:00 2001 From: Jonathan Lange Date: Thu, 8 Feb 2018 09:54:49 +0000 Subject: [PATCH] Prepare to release 0.3.0 --- CHANGELOG.rst | 4 +++- graphql-api.cabal | 22 +++++++++++++++------- package.yaml | 16 ++++++++++++---- 3 files changed, 30 insertions(+), 12 deletions(-) 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