forked from OSS/graphql
Version bump, CHANGELOG and some gardening
This commit is contained in:
parent
dcd7b46a6d
commit
7cf2b59331
@ -1,6 +1,15 @@
|
||||
# Change Log
|
||||
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
|
||||
### Added
|
||||
- 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
|
||||
should include:
|
||||
|
||||
- [x] GraphQL AST
|
||||
- [ ] Parser for the GraphQL language.
|
||||
- [ ] Data types for the GraphQL Schema language.
|
||||
- [ ] GraphQL Schema AST.
|
||||
- [ ] Parser for the GraphQL Schema language.
|
||||
- [ ] Interpreter of GraphQL requests.
|
||||
- [ ] Utilities to define GraphQL types and schema.
|
||||
|
||||
See the TODO file for more concrete tasks.
|
||||
|
||||
## Contact
|
||||
|
||||
Suggestions, contributions and bug reports are welcome.
|
||||
|
@ -1,9 +1,9 @@
|
||||
name: graphql
|
||||
version: 0.1
|
||||
version: 0.2
|
||||
synopsis: Haskell GraphQL implementation
|
||||
description:
|
||||
For now this package provides the data types for the GraphQL language.
|
||||
Further releases will cover more aspects of the GraphQL specification.
|
||||
This package provides a rudimentary parser for the
|
||||
<https://facebook.github.io/graphql/ GraphQL> language.
|
||||
homepage: https://github.com/jdnavarro/graphql-haskell
|
||||
bug-reports: https://github.com/jdnavarro/graphql-haskell/issues
|
||||
license: BSD3
|
||||
|
Loading…
Reference in New Issue
Block a user