diff --git a/CHANGELOG.md b/CHANGELOG.md index 1231a61..69663e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on and this project adheres to [Haskell Package Versioning Policy](https://pvp.haskell.org/). -## [Unreleased] +## [1.0.3.0] - 2022-03-27 ### Fixed - Index position in error path. (Index and Segment paths of a field have been swapped). @@ -15,6 +15,7 @@ and this project adheres to ### Added - quickCheck Parser test for arguments. Arbitrary instances for Language.GraphQL.AST.Document. - Enhanced query error messages. Add tests for these cases. +- Allow version 2.0 of the text package. ## [1.0.2.0] - 2021-12-26 ### Added @@ -476,7 +477,7 @@ and this project adheres to ### Added - Data types for the GraphQL language. -[Unreleased]: https://www.caraus.tech/projects/pub-graphql/repository/23/diff?rev=master&rev_to=v1.0.2.0 +[1.0.3.0]: https://www.caraus.tech/projects/pub-graphql/repository/23/diff?rev=1.0.3.0&rev_to=v1.0.2.0 [1.0.2.0]: https://www.caraus.tech/projects/pub-graphql/repository/23/diff?rev=1.0.2.0&rev_to=v1.0.1.0 [1.0.1.0]: https://www.caraus.tech/projects/pub-graphql/repository/23/diff?rev=v1.0.1.0&rev_to=v1.0.0.0 [1.0.0.0]: https://www.caraus.tech/projects/pub-graphql/repository/23/diff?rev=v1.0.0.0&rev_to=v0.11.1.0 diff --git a/graphql.cabal b/graphql.cabal index 993c45b..c50029e 100644 --- a/graphql.cabal +++ b/graphql.cabal @@ -1,7 +1,7 @@ cabal-version: 2.4 name: graphql -version: 1.0.2.0 +version: 1.0.3.0 synopsis: Haskell GraphQL implementation description: Haskell implementation. category: Language @@ -22,8 +22,7 @@ extra-source-files: README.md tested-with: GHC == 8.10.7, - GHC == 9.0.1, - GHC == 9.2.1 + GHC == 9.2.2 source-repository head type: git @@ -72,7 +71,7 @@ library megaparsec >= 9.0 && < 10, parser-combinators >= 1.3 && < 2, template-haskell >= 2.16 && < 3, - text ^>= 1.2.4, + text >= 1.2 && < 3, transformers ^>= 0.5.6, unordered-containers ^>= 0.2.14, vector ^>= 0.12.3