Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
ghc: ['9.4', '9.6', '9.8', '9.10', '9.12']
ghc: ['9.4', '9.6', '9.8', '9.10', '9.12', '9.14']
include:
- os: macOS-latest
ghc: 'latest'
Expand Down
15 changes: 9 additions & 6 deletions nonempty-vector.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
cabal-version: 3.0
name: nonempty-vector
version: 0.2.4
-- Delete the x-revision field when you bump the version
x-revision: 1
synopsis: Non-empty vectors
description: Performant, non-empty mutable and immutable vectors
homepage: https://github.com/emilypi/nonempty-vector
Expand All @@ -17,11 +19,12 @@ extra-doc-files:
README.md

tested-with:
GHC ==9.4.4
|| ==9.6.6
GHC ==9.4.8
|| ==9.6.7
|| ==9.8.4
|| ==9.10.1
|| ==9.12.1
|| ==9.10.3
|| ==9.12.4
|| ==9.14.1

source-repository head
type: git
Expand All @@ -34,7 +37,7 @@ library
Data.Vector.NonEmpty.Mutable

build-depends:
base >=4.16 && <4.22
base >=4.16 && <4.23
, deepseq
, primitive >=0.6 && <0.10
, vector >=0.12 && <0.14
Expand All @@ -48,7 +51,7 @@ test-suite tasty
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
base >=4.16 && <4.22
base >=4.16 && <4.23
, nonempty-vector
, QuickCheck
, tasty
Expand Down