From c5b1914aeb36df2ecdf25c90976dd5c0e53d9ecd Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Mon, 5 Jan 2026 12:34:12 +0800 Subject: [PATCH 1/4] Bump upper dependency bound on `base`. --- nonempty-vector.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nonempty-vector.cabal b/nonempty-vector.cabal index 7432105..9f7ba1b 100644 --- a/nonempty-vector.cabal +++ b/nonempty-vector.cabal @@ -34,7 +34,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 @@ -48,7 +48,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 From cb181f438129b63d3eb7d4978f904cf4c0c083f4 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Mon, 5 Jan 2026 12:35:07 +0800 Subject: [PATCH 2/4] Add GHC version `9.14.1` to `tested-with` list. --- nonempty-vector.cabal | 1 + 1 file changed, 1 insertion(+) diff --git a/nonempty-vector.cabal b/nonempty-vector.cabal index 9f7ba1b..4196fb6 100644 --- a/nonempty-vector.cabal +++ b/nonempty-vector.cabal @@ -22,6 +22,7 @@ tested-with: || ==9.8.4 || ==9.10.1 || ==9.12.1 + || ==9.14.1 source-repository head type: git From ca9209c41c64c5ac6d95e6a279d615526aee8d22 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Mon, 5 Jan 2026 12:35:33 +0800 Subject: [PATCH 3/4] Add GHC version `9.14` to CI build matrix. --- .github/workflows/haskell-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index bd0e94d..5c19b8b 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -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' From f49aa1303068f873be6ea904b4cba12a144bbfb1 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Sat, 18 Apr 2026 13:23:59 +0200 Subject: [PATCH 4/4] v0.2.4 revision 1; bump tested-with minor versions --- nonempty-vector.cabal | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/nonempty-vector.cabal b/nonempty-vector.cabal index 4196fb6..e20e700 100644 --- a/nonempty-vector.cabal +++ b/nonempty-vector.cabal @@ -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 @@ -17,11 +19,11 @@ 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