Skip to content

Prepare to release 0.3.0 #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
graphql-api changelog
=====================

$next (yyyy-mm-dd)
0.3.0 (2018-02-08)
==================

Breaking changes
Expand All @@ -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)
===================
Expand Down
22 changes: 15 additions & 7 deletions graphql-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>, Tom Hunger <[email protected]>
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:
Expand Down
16 changes: 12 additions & 4 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>, Tom Hunger <[email protected]>
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
Expand Down