summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2023-04-25 00:21:58 +0200
committerEugen Wissner <belka@caraus.de>2023-04-25 08:51:18 +0200
commit3ed7dcd401e286d9e0b9ca5ea923f671699e7417 (patch)
tree9b0c821c583883788168323d62d015e92be7c4ff
parent408dfb4301bfa1009baa6d68b33c699b18527b0a (diff)
downloadgraphql-3ed7dcd401e286d9e0b9ca5ea923f671699e7417.tar.gz
Support hspec 2.11v1.2.0.1
-rw-r--r--CHANGELOG.md5
-rw-r--r--graphql.cabal4
-rw-r--r--test.sh15
3 files changed, 6 insertions, 18 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f7364c7..b37a40b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,9 @@ The format is based on
and this project adheres to
[Haskell Package Versioning Policy](https://pvp.haskell.org/).
-## [Unreleased]
+## [1.2.0.1] - 2023-04-25
+### Fixed
+- Support hspec 2.11.
## [1.2.0.0] - 2023-02-28
### Added
@@ -506,6 +508,7 @@ and this project adheres to
### Added
- Data types for the GraphQL language.
+[1.2.0.1]: https://git.caraus.tech/OSS/graphql/compare/v1.2.0.0...v1.2.0.1
[1.2.0.0]: https://git.caraus.tech/OSS/graphql/compare/v1.1.0.0...v1.2.0.0
[1.1.0.0]: https://git.caraus.tech/OSS/graphql/compare/v1.0.3.0...v1.1.0.0
[1.0.3.0]: https://git.caraus.tech/OSS/graphql/compare/v1.0.2.0...v1.0.3.0
diff --git a/graphql.cabal b/graphql.cabal
index 2ba7131..72f81e4 100644
--- a/graphql.cabal
+++ b/graphql.cabal
@@ -1,7 +1,7 @@
cabal-version: 2.4
name: graphql
-version: 1.2.0.0
+version: 1.2.0.1
synopsis: Haskell GraphQL implementation
description: Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation.
category: Language
@@ -97,7 +97,7 @@ test-suite graphql-test
conduit,
exceptions,
graphql,
- hspec ^>= 2.10.9,
+ hspec >= 2.10.9 && < 2.12,
hspec-expectations ^>= 0.8.2,
hspec-megaparsec ^>= 2.2.0,
megaparsec,
diff --git a/test.sh b/test.sh
deleted file mode 100644
index 7669a86..0000000
--- a/test.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# setup
-cabal update
-
-# doc
-cabal haddock --enable-documentation --with-compiler=/srv/httpd/server/ghcup/9.2/bin/ghc
-
-# lint
-cabal install hlint --with-compiler=/srv/httpd/server/ghcup/9.2/bin/ghc --overwrite-policy=always "--constraint=hlint ==3.5"
-cabal exec hlint -- src tests
-
-# test
-cabal build graphql-test --with-compiler=/srv/httpd/server/ghcup/9.2/bin/ghc
-cabal test --test-show-details=direct --with-compiler=/srv/httpd/server/ghcup/9.2/bin/ghc