1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
Index: b/vector-th-unbox.cabal
===================================================================
--- a/vector-th-unbox.cabal
+++ b/vector-th-unbox.cabal
@@ -1,5 +1,6 @@
name: vector-th-unbox
version: 0.2.2
+x-revision: 4
synopsis: Deriver for Data.Vector.Unboxed using Template Haskell
description:
A Template Haskell deriver for unboxed vectors, given a pair of coercion
@@ -16,11 +17,19 @@ maintainer: Fumiaki Kinoshita <fumie
category: Data
build-type: Simple
cabal-version: >= 1.10
+
tested-with:
- GHC == 8.0.2,
- GHC == 8.2.2,
- GHC == 8.4.4,
- GHC == 8.6.5, GHC == 8.8.3, GHC == 8.10.1, GHC == 9.0.1, GHC ==9.2.1
+ GHC == 9.6.1
+ GHC == 9.4.4
+ GHC == 9.2.7
+ GHC == 9.0.2
+ GHC == 8.10.7
+ GHC == 8.8.4
+ GHC == 8.6.5
+ GHC == 8.4.4
+ GHC == 8.2.2
+ GHC == 8.0.2
+
extra-source-files:
CHANGELOG.md
README.md
@@ -35,9 +44,9 @@ library
Data.Vector.Unboxed.Deriving
build-depends:
- base >= 4.5 && < 4.17,
- template-haskell >= 2.5 && <2.19,
- vector >= 0.7.1 && <0.13
+ base >= 4.9 && < 4.19,
+ template-haskell >= 2.5 && <2.21,
+ vector >= 0.7.1 && <0.14
test-suite sanity
default-language: Haskell2010
@@ -52,4 +61,3 @@ test-suite sanity
ghc-options: -Wall
-- vim: et sw=4 ts=4 sts=4:
-
|