Deprecate plural type aliases

Fixes #16. Deprecates:

- Language.GraphQL.AST.Arguments
- Language.GraphQL.AST.Directives
- Language.GraphQL.AST.VariableDefinitions
This commit is contained in:
2019-10-01 06:59:30 +02:00
parent 0d142fb01c
commit b2a9ec7d82
4 changed files with 39 additions and 24 deletions

View File

@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file.
## Unreleased
### Deprecated
- `Language.GraphQL.AST.Arguments`. Use `[Language.GraphQL.AST.Argument]`
instead.
- `Language.GraphQL.AST.Directives`. Use `[Language.GraphQL.AST.Directives]`
instead.
- `Language.GraphQL.AST.VariableDefinitions`. Use
`[Language.GraphQL.AST.VariableDefinition]` instead.
### Added
- Module documentation.
## [0.5.0.1] - 2019-09-10
### Added