Version bump, CHANGELOG and some gardening
This commit is contained in:
parent
dcd7b46a6d
commit
7cf2b59331
@ -1,6 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [0.2] - 2015-09-14
|
||||||
|
### Added
|
||||||
|
- Rudimentary parser for `GraphQL` which successfully parses the sample file
|
||||||
|
`kitchen-sink.graphql` from `graphql-js` tests.
|
||||||
|
- Golden test for `kitchen-sink.grahql` parsing.
|
||||||
|
### Changed
|
||||||
|
- Many optional data types in `GraphQl` didn't need to be wrapped in a `Maybe`.
|
||||||
|
- Some `newtype`s became type synonyms for easier parsing.
|
||||||
|
|
||||||
## [0.1] - 2015-09-12
|
## [0.1] - 2015-09-12
|
||||||
### Added
|
### Added
|
||||||
- Data types for the GraphQL language.
|
- Data types for the GraphQL language.
|
||||||
|
@ -7,12 +7,15 @@ but the idea is to be a Haskell port of
|
|||||||
[`graphql-js`](https://github.com/graphql/graphql-js). Next releases
|
[`graphql-js`](https://github.com/graphql/graphql-js). Next releases
|
||||||
should include:
|
should include:
|
||||||
|
|
||||||
|
- [x] GraphQL AST
|
||||||
- [ ] Parser for the GraphQL language.
|
- [ ] Parser for the GraphQL language.
|
||||||
- [ ] Data types for the GraphQL Schema language.
|
- [ ] GraphQL Schema AST.
|
||||||
- [ ] Parser for the GraphQL Schema language.
|
- [ ] Parser for the GraphQL Schema language.
|
||||||
- [ ] Interpreter of GraphQL requests.
|
- [ ] Interpreter of GraphQL requests.
|
||||||
- [ ] Utilities to define GraphQL types and schema.
|
- [ ] Utilities to define GraphQL types and schema.
|
||||||
|
|
||||||
|
See the TODO file for more concrete tasks.
|
||||||
|
|
||||||
## Contact
|
## Contact
|
||||||
|
|
||||||
Suggestions, contributions and bug reports are welcome.
|
Suggestions, contributions and bug reports are welcome.
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
name: graphql
|
name: graphql
|
||||||
version: 0.1
|
version: 0.2
|
||||||
synopsis: Haskell GraphQL implementation
|
synopsis: Haskell GraphQL implementation
|
||||||
description:
|
description:
|
||||||
For now this package provides the data types for the GraphQL language.
|
This package provides a rudimentary parser for the
|
||||||
Further releases will cover more aspects of the GraphQL specification.
|
<https://facebook.github.io/graphql/ GraphQL> language.
|
||||||
homepage: https://github.com/jdnavarro/graphql-haskell
|
homepage: https://github.com/jdnavarro/graphql-haskell
|
||||||
bug-reports: https://github.com/jdnavarro/graphql-haskell/issues
|
bug-reports: https://github.com/jdnavarro/graphql-haskell/issues
|
||||||
license: BSD3
|
license: BSD3
|
||||||
|
Loading…
Reference in New Issue
Block a user