From 4163636d8f6a4cf23ff84e016f245b16156e9b4d Mon Sep 17 00:00:00 2001 From: Alexey Khudyakov Date: Thu, 4 Jan 2024 13:13:37 +0300 Subject: [PATCH 1/2] Add GHC 9.8.1. to CI --- .github/workflows/ci.yml | 2 ++ vector-stream/vector-stream.cabal | 1 + vector/vector.cabal | 1 + 3 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42fe7e8e..c8a2cca7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,7 @@ jobs: - { cabal: "3.10", os: ubuntu-latest, ghc: "9.2.8" } - { cabal: "3.10", os: ubuntu-latest, ghc: "9.4.6" } - { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.2" } + - { cabal: "3.10", os: ubuntu-latest, ghc: "9.8.1" } # Win - { cabal: "3.10", os: windows-latest, ghc: "8.4.4" } # OOM when building tests @@ -45,6 +46,7 @@ jobs: - { cabal: "3.10", os: macOS-latest, ghc: "9.2.8" } - { cabal: "3.10", os: macOS-latest, ghc: "9.4.6" } - { cabal: "3.10", os: macOS-latest, ghc: "9.6.2" } + - { cabal: "3.10", os: macOS-latest, ghc: "9.8.1" } fail-fast: false steps: diff --git a/vector-stream/vector-stream.cabal b/vector-stream/vector-stream.cabal index 19605c12..98fbfab8 100644 --- a/vector-stream/vector-stream.cabal +++ b/vector-stream/vector-stream.cabal @@ -31,6 +31,7 @@ Tested-With: GHC == 9.2.8, GHC == 9.4.6, GHC == 9.6.2 + GHC == 9.8.1 Cabal-Version: >=1.10 Build-Type: Simple diff --git a/vector/vector.cabal b/vector/vector.cabal index 0d5e5a26..a8491d6d 100644 --- a/vector/vector.cabal +++ b/vector/vector.cabal @@ -52,6 +52,7 @@ Tested-With: GHC == 9.2.8, GHC == 9.4.6, GHC == 9.6.2 + GHC == 9.8.1 Cabal-Version: >= 1.10 From f58608ddf1bd6889a6c885f0f478f8d77125560d Mon Sep 17 00:00:00 2001 From: Alexey Khudyakov Date: Thu, 4 Jan 2024 13:18:38 +0300 Subject: [PATCH 2/2] Prepare release vector-stream-0.1.0.1 --- vector-stream/changelog.md | 6 ++++++ vector-stream/vector-stream.cabal | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/vector-stream/changelog.md b/vector-stream/changelog.md index a49b3561..c54b841d 100644 --- a/vector-stream/changelog.md +++ b/vector-stream/changelog.md @@ -1,3 +1,9 @@ +# Changes in version 0.1.0.1 + + * Compatibility with future GHC 9.10 release + [#462](https://github.com/haskell/vector/pull/462) + + # Changes in version 0.1.0.0 * Initial move from `vector`, which will depend on this package starting from diff --git a/vector-stream/vector-stream.cabal b/vector-stream/vector-stream.cabal index 98fbfab8..3f01df71 100644 --- a/vector-stream/vector-stream.cabal +++ b/vector-stream/vector-stream.cabal @@ -1,5 +1,5 @@ Name: vector-stream -Version: 0.1.0.0 +Version: 0.1.0.1 -- don't forget to update the changelog file! License: BSD3 License-File: LICENSE