Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release of vector-stream with GHC-9.10 compatibility #474

Merged
merged 2 commits into from
Jan 6, 2024
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: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
6 changes: 6 additions & 0 deletions vector-stream/changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion vector-stream/vector-stream.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions vector/vector.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading