Release latest changes in 1.0.1.0

This commit is contained in:
Eugen Wissner 2023-02-17 11:59:24 +01:00
parent 92463f7c4a
commit 5306730ff8
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0
2 changed files with 7 additions and 7 deletions

View File

@ -6,14 +6,14 @@ The format is based on
and this project adheres to and this project adheres to
[Haskell Package Versioning Policy](https://pvp.haskell.org/). [Haskell Package Versioning Policy](https://pvp.haskell.org/).
## [Unreleased] ## [1.0.1.0] - 2023-02-17
### Added ### Added
- `ToGraphQL` and `FromGraphQL` typeclasses with instances for basic types. - `ToGraphQL` and `FromGraphQL` typeclasses with instances for basic types.
- `Resolver` module with `argument` and `defaultResolver` helper functions. - `Resolver` module with `argument` and `defaultResolver` helper functions.
## [1.0.0.0] - 2022-03-29 ## 1.0.0.0 - 2022-03-29
### Added ### Added
- JSON serialization. - JSON serialization.
- Test helpers. - Test helpers.
[Unreleased]: https://www.caraus.tech/projects/pub-graphql-spice/repository/28/diff?rev=master&rev_to=v1.0.0.0 [1.0.1.0]: https://www.caraus.tech/projects/pub-graphql-spice/repository/28/diff?rev=v1.0.1.0&rev_to=v1.0.0.0

View File

@ -1,7 +1,7 @@
cabal-version: 2.4 cabal-version: 2.4
name: graphql-spice name: graphql-spice
version: 1.0.0.0 version: 1.0.1.0
synopsis: GraphQL with batteries synopsis: GraphQL with batteries
description: Various extensions and convenience functions for the core description: Various extensions and convenience functions for the core
graphql package. graphql package.
@ -10,13 +10,13 @@ homepage: https://www.caraus.tech/projects/pub-graphql-spice
bug-reports: https://www.caraus.tech/projects/pub-graphql-spice/issues bug-reports: https://www.caraus.tech/projects/pub-graphql-spice/issues
author: Eugen Wissner <belka@caraus.de> author: Eugen Wissner <belka@caraus.de>
maintainer: belka@caraus.de maintainer: belka@caraus.de
copyright: (c) 2021-2022 Eugen Wissner copyright: (c) 2021-2023 Eugen Wissner
license: MPL-2.0 license: MPL-2.0
license-files: LICENSE license-files: LICENSE
build-type: Simple build-type: Simple
extra-source-files: CHANGELOG.md extra-source-files: CHANGELOG.md
tested-with: tested-with:
GHC == 8.10.7 GHC == 9.2.5
source-repository head source-repository head
type: git type: git
@ -38,7 +38,7 @@ library
containers ^>= 0.6.2, containers ^>= 0.6.2,
exceptions ^>= 0.10.4, exceptions ^>= 0.10.4,
hspec-expectations >= 0.8.2 && < 0.9, hspec-expectations >= 0.8.2 && < 0.9,
graphql ^>= 1.0.3.0, graphql >= 1.0,
megaparsec >= 9.0 && < 10, megaparsec >= 9.0 && < 10,
scientific ^>= 0.3.7, scientific ^>= 0.3.7,
text >= 1.2 && < 3, text >= 1.2 && < 3,