forked from OSS/graphql
		
	Allow version 2.0 of the text package.
This commit is contained in:
		| @@ -6,7 +6,7 @@ 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.3.0] - 2022-03-27 | ||||||
| ### Fixed | ### Fixed | ||||||
| - Index position in error path. (Index and Segment paths of a field have been | - Index position in error path. (Index and Segment paths of a field have been | ||||||
|   swapped). |   swapped). | ||||||
| @@ -15,6 +15,7 @@ and this project adheres to | |||||||
| ### Added | ### Added | ||||||
| - quickCheck Parser test for arguments. Arbitrary instances for Language.GraphQL.AST.Document. | - quickCheck Parser test for arguments. Arbitrary instances for Language.GraphQL.AST.Document. | ||||||
| - Enhanced query error messages. Add tests for these cases. | - Enhanced query error messages. Add tests for these cases. | ||||||
|  | - Allow version 2.0 of the text package. | ||||||
|  |  | ||||||
| ## [1.0.2.0] - 2021-12-26 | ## [1.0.2.0] - 2021-12-26 | ||||||
| ### Added | ### Added | ||||||
| @@ -476,7 +477,7 @@ and this project adheres to | |||||||
| ### Added | ### Added | ||||||
| - Data types for the GraphQL language. | - 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.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.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 | [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 | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| cabal-version: 2.4 | cabal-version: 2.4 | ||||||
|  |  | ||||||
| name:           graphql | name:           graphql | ||||||
| version:        1.0.2.0 | version:        1.0.3.0 | ||||||
| synopsis:       Haskell GraphQL implementation | synopsis:       Haskell GraphQL implementation | ||||||
| description:    Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation. | description:    Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation. | ||||||
| category:       Language | category:       Language | ||||||
| @@ -22,8 +22,7 @@ extra-source-files: | |||||||
|   README.md |   README.md | ||||||
| tested-with: | tested-with: | ||||||
|   GHC == 8.10.7, |   GHC == 8.10.7, | ||||||
|   GHC == 9.0.1, |   GHC == 9.2.2 | ||||||
|   GHC == 9.2.1 |  | ||||||
|  |  | ||||||
| source-repository head | source-repository head | ||||||
|   type: git |   type: git | ||||||
| @@ -72,7 +71,7 @@ library | |||||||
|     megaparsec >= 9.0 && < 10, |     megaparsec >= 9.0 && < 10, | ||||||
|     parser-combinators >= 1.3 && < 2, |     parser-combinators >= 1.3 && < 2, | ||||||
|     template-haskell >= 2.16 && < 3, |     template-haskell >= 2.16 && < 3, | ||||||
|     text ^>= 1.2.4, |     text >= 1.2 && < 3, | ||||||
|     transformers ^>= 0.5.6, |     transformers ^>= 0.5.6, | ||||||
|     unordered-containers ^>= 0.2.14, |     unordered-containers ^>= 0.2.14, | ||||||
|     vector ^>= 0.12.3 |     vector ^>= 0.12.3 | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user