File tree 3 files changed +30
-12
lines changed
3 files changed +30
-12
lines changed Original file line number Diff line number Diff line change 2
2
graphql-api changelog
3
3
=====================
4
4
5
- $next (yyyy-mm-dd )
5
+ 0.3.0 (2018-02-08 )
6
6
==================
7
7
8
8
Breaking changes
@@ -17,9 +17,11 @@ Improvements
17
17
------------
18
18
19
19
* Now support GHC 8.2 as well as 8.0.2 and later
20
+ * Added support for anonymous queries (thanks `@sunwukonga `_)
20
21
21
22
.. _`#118` : https://github.com/jml/graphql-api/issues/118
22
23
.. _`#149` : https://github.com/haskell-graphql/graphql-api/issues/149
24
+ .. _`@sunwukonga` : https://github.com/sunwukonga
23
25
24
26
v0.2.0 (2017-10-12)
25
27
===================
Original file line number Diff line number Diff line change 2
2
--
3
3
-- see: https://github.com/sol/hpack
4
4
--
5
- -- hash: 78a5a4f0c4375f8d03bffd738aeb76a00fdf535cd6bc2e07cdaa13de38b1e614
5
+ -- hash: 2160ff0226a0b10f7166ddbcf09ec6f79dfddfd66c81244898fb1afabe36bcf8
6
6
7
7
name : graphql-api
8
- version : 0.2 .0
8
+ version : 0.3 .0
9
9
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.
11
16
category : Web
12
17
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
16
21
maintainer : Jonathan M. Lange <jml@mumak.net>, Tom Hunger <tehunger@gmail.com>
17
22
license : Apache
18
23
license-file : LICENSE.Apache-2.0
19
24
build-type : Simple
20
25
cabal-version : >= 1.10
21
26
27
+ extra-source-files :
28
+ CHANGELOG.rst
29
+
22
30
source-repository head
23
31
type : git
24
- location : https://github.com/jml /graphql-api
32
+ location : https://github.com/haskell-graphql /graphql-api
25
33
26
34
library
27
35
hs-source-dirs :
Original file line number Diff line number Diff line change 1
1
name : graphql-api
2
- version : 0.2 .0
2
+ version : 0.3 .0
3
3
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
6
12
maintainer : Jonathan M. Lange <jml@mumak.net>, Tom Hunger <tehunger@gmail.com>
7
13
license : Apache
8
14
license-file : LICENSE.Apache-2.0
9
- github : jml /graphql-api
15
+ github : haskell-graphql /graphql-api
10
16
category : Web
11
17
stability : unstable
18
+ extra-source-files :
19
+ - CHANGELOG.rst
12
20
13
21
# NB the "redundant constraints" warning is a GHC bug: https://ghc.haskell.org/trac/ghc/ticket/11099
14
22
ghc-options : -Wall -fno-warn-redundant-constraints
You can’t perform that action at this time.
0 commit comments