Skip to content

Commit 0e04745

Browse files
authoredFeb 9, 2018
Merge pull request #168 from haskell-graphql/release-0.3.0
Prepare to release 0.3.0
2 parents 92c6ca4 + 136b60f commit 0e04745

File tree

3 files changed

+30
-12
lines changed

3 files changed

+30
-12
lines changed
 

‎CHANGELOG.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
graphql-api changelog
33
=====================
44

5-
$next (yyyy-mm-dd)
5+
0.3.0 (2018-02-08)
66
==================
77

88
Breaking changes
@@ -17,9 +17,11 @@ Improvements
1717
------------
1818

1919
* Now support GHC 8.2 as well as 8.0.2 and later
20+
* Added support for anonymous queries (thanks `@sunwukonga`_)
2021

2122
.. _`#118`: https://github.com/jml/graphql-api/issues/118
2223
.. _`#149`: https://github.com/haskell-graphql/graphql-api/issues/149
24+
.. _`@sunwukonga`: https://github.com/sunwukonga
2325

2426
v0.2.0 (2017-10-12)
2527
===================

‎graphql-api.cabal

+15-7
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,34 @@
22
--
33
-- see: https://github.com/sol/hpack
44
--
5-
-- hash: 78a5a4f0c4375f8d03bffd738aeb76a00fdf535cd6bc2e07cdaa13de38b1e614
5+
-- hash: 2160ff0226a0b10f7166ddbcf09ec6f79dfddfd66c81244898fb1afabe36bcf8
66

77
name: graphql-api
8-
version: 0.2.0
8+
version: 0.3.0
99
synopsis: GraphQL API
10-
description: Please see README.md
10+
description: Implement [GraphQL](http://graphql.org/) servers in Haskell.
11+
.
12+
Provides a Servant-like type-based API for defining GraphQL schemas and
13+
implementing handlers for those schemas.
14+
.
15+
See [README.md](https://github.com/haskell-graphql/graphql-api#graphql-api) for more details.
1116
category: Web
1217
stability: unstable
13-
homepage: https://github.com/jml/graphql-api#readme
14-
bug-reports: https://github.com/jml/graphql-api/issues
15-
author: Jonathan M. Lange
18+
homepage: https://github.com/haskell-graphql/graphql-api#readme
19+
bug-reports: https://github.com/haskell-graphql/graphql-api/issues
20+
author: Jonathan M. Lange, Tom Hunger
1621
maintainer: Jonathan M. Lange <jml@mumak.net>, Tom Hunger <tehunger@gmail.com>
1722
license: Apache
1823
license-file: LICENSE.Apache-2.0
1924
build-type: Simple
2025
cabal-version: >= 1.10
2126

27+
extra-source-files:
28+
CHANGELOG.rst
29+
2230
source-repository head
2331
type: git
24-
location: https://github.com/jml/graphql-api
32+
location: https://github.com/haskell-graphql/graphql-api
2533

2634
library
2735
hs-source-dirs:

‎package.yaml

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
name: graphql-api
2-
version: 0.2.0
2+
version: 0.3.0
33
synopsis: GraphQL API
4-
description: Please see README.md
5-
author: Jonathan M. Lange
4+
description: |
5+
Implement [GraphQL](http://graphql.org/) servers in Haskell.
6+
7+
Provides a Servant-like type-based API for defining GraphQL schemas and
8+
implementing handlers for those schemas.
9+
10+
See [README.md](https://github.com/haskell-graphql/graphql-api#graphql-api) for more details.
11+
author: Jonathan M. Lange, Tom Hunger
612
maintainer: Jonathan M. Lange <jml@mumak.net>, Tom Hunger <tehunger@gmail.com>
713
license: Apache
814
license-file: LICENSE.Apache-2.0
9-
github: jml/graphql-api
15+
github: haskell-graphql/graphql-api
1016
category: Web
1117
stability: unstable
18+
extra-source-files:
19+
- CHANGELOG.rst
1220

1321
# NB the "redundant constraints" warning is a GHC bug: https://ghc.haskell.org/trac/ghc/ticket/11099
1422
ghc-options: -Wall -fno-warn-redundant-constraints

0 commit comments

Comments
 (0)
Please sign in to comment.