Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Allow using io-classes 1.8 #101

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

Merged
merged 2 commits into from
May 30, 2025
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
16 changes: 8 additions & 8 deletions 16 .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["8.10.7", "9.2.8", "9.4.8", "9.6.6", "9.8.4", "9.10.1", "9.12.1"]
ghc: ["9.4.8", "9.6.7", "9.8.4", "9.10.2", "9.12.2"]
cabal: ["3.14.1.1"]
os: [ubuntu-latest, windows-latest, macOS-13]
os: [ubuntu-latest, windows-latest, macOS-latest]
no-debug: [""]
include:
- ghc: "9.6.6"
- ghc: "9.6.7"
cabal: "3.12.1.0"
os: ubuntu-latest
no-debug: "no-debug"
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.6.6"]
ghc: ["9.6.7"]
cabal: ["3.12.1.0"]
os: [ubuntu-latest]

Expand All @@ -128,7 +128,7 @@ jobs:
# an argument to cabal install. This ensures that we never rebuild
# dependencies because of newly uploaded packages unless we want to.
env:
hackage-index-state: "2024-04-10T14:36:07Z"
hackage-index-state: "2025-05-26T13:28:18Z"

steps:
- name: Checkout repository
Expand Down Expand Up @@ -183,14 +183,14 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.6.6"]
ghc: ["9.6.7"]
cabal: ["3.12.1.0"]
os: [ubuntu-latest]

# See the comment on the hackage-index-state environment variable for the
# stylish-haskell job.
env:
hackage-index-state: "2024-04-10T14:36:07Z"
hackage-index-state: "2025-05-26T13:28:18Z"

steps:
- name: Checkout repository
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.6.6"]
ghc: ["9.6.7"]
cabal: ["3.10.3.0"]
os: [ubuntu-latest]

Expand Down
2 changes: 1 addition & 1 deletion 2 cabal.project
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
index-state:
-- Bump this if you need newer packages from Hackage
, hackage.haskell.org 2025-02-11T00:00:00Z
, hackage.haskell.org 2025-05-26T13:28:18Z

packages:
fs-api
Expand Down
2 changes: 2 additions & 0 deletions 2 fs-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
### Patch

* Make it build with `ghc-9.12`.
* Drop support for `ghc-8.10` and `ghc-9.2`.
* Bugfix: opening a file in read mode now expects the file to exist already.
This was already the semantics when using `hOpen` from the `ioHasFS` instance,
but it was not reflected in the `allowExisting` function. `allowExisting
Readmode` now returns `MustExist` instead of `AllowExisting`.
* Bugfix: `hGetBufExactly` and `hGetBufExactlyAt` would previously try to read
too many bytes in the presence of partial reads. These functions now properly
count the number of remaining bytes that have to be read.
* Support `io-classes-1.8`

## 0.3.0.1 -- 2024-10-02

Expand Down
5 changes: 2 additions & 3 deletions 5 fs-api/fs-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ extra-doc-files:
CHANGELOG.md
README.md

tested-with:
GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12
tested-with: GHC ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12

source-repository head
type: git
Expand Down Expand Up @@ -49,7 +48,7 @@ library
, digest ^>=0.0
, directory ^>=1.3
, filepath ^>=1.4 || ^>=1.5
, io-classes ^>=1.6 || ^>=1.7
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8
, primitive ^>=0.9
, safe-wild-cards ^>=1.0
, text ^>=1.2 || ^>=2.0 || ^>=2.1
Expand Down
2 changes: 2 additions & 0 deletions 2 fs-sim/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
### Patch

* Make it build with `ghc-9.12`.
* Support `io-classes-1.8`.
* Drop support for `ghc-8.10` and `ghc-9.2`.
* Support the new `MustExist` option for `AllowExisting` that was added in
`fs-api`.

Expand Down
5 changes: 2 additions & 3 deletions 5 fs-sim/fs-sim.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ extra-doc-files:
CHANGELOG.md
README.md

tested-with:
GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12
tested-with: GHC ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12

source-repository head
type: git
Expand All @@ -44,7 +43,7 @@ library
, bytestring ^>=0.10 || ^>=0.11 || ^>=0.12
, containers ^>=0.5 || ^>=0.6 || ^>=0.7
, fs-api ^>=0.3
, io-classes ^>=1.6 || ^>=1.7
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8
, io-classes:strict-stm
jasagredo marked this conversation as resolved.
Show resolved Hide resolved
, mtl ^>=2.2 || ^>=2.3
, primitive ^>=0.9
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.