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 54 55 56 57 58 59 60 61 62 63 64 65
|
Index: b/vector-binary-instances.cabal
===================================================================
--- a/vector-binary-instances.cabal
+++ b/vector-binary-instances.cabal
@@ -1,6 +1,7 @@
Cabal-version: 3.0
Name: vector-binary-instances
Version: 0.2.5.2
+x-revision: 5
Synopsis: Instances of Data.Binary for vector
Description:
Instances for Binary for the types defined in the vector package,
@@ -26,17 +27,32 @@ Description:
instances.
-- URL for the project homepage or repository.
-Homepage: https://github.com/bos/vector-binary-instances
-bug-reports: https://github.com/bos/vector-binary-instances/issues
+Homepage: https://github.com/haskell/vector-binary-instances
+bug-reports: https://github.com/haskell/vector-binary-instances/issues
License: BSD-3-Clause
License-file: LICENSE
Author: Don Stewart
Maintainer: dons00@gmail.com, bos@serpentine.com, Ben Gamari <ben@smart-cactus.org>
-Tested-With: GHC==8.10.1, GHC==8.8.3, GHC==8.6.5, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2
Stability: Experimental
Category: Data
Build-type: Simple
+tested-with:
+ GHC == 9.6.2
+ GHC == 9.4.5
+ GHC == 9.2.8
+ 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
+ GHC == 7.10.3
+ GHC == 7.8.4
+ GHC == 7.6.3
+ GHC == 7.4.2
+
Library
Ghc-options: -Wall
-- Modules exported by the library.
@@ -45,8 +61,8 @@ Library
-- Packages needed in order to build this package.
Build-depends:
- base > 3 && < 4.16,
- vector >= 0.6 && < 0.13,
+ base >= 4.5 && < 5,
+ vector >= 0.6 && < 0.14,
binary >= 0.5 && < 0.11
Default-Language: Haskell2010
@@ -78,4 +94,4 @@ Test-Suite tests
source-repository head
type: git
- location: https://github.com/bos/vector-binary-instances
+ location: https://github.com/haskell/vector-binary-instances
|