From 06b2beeeadaab2b18051c052a6694c68768c4b05 Mon Sep 17 00:00:00 2001 From: Joris Dral Date: Thu, 6 Jun 2024 17:06:42 +0200 Subject: [PATCH 1/2] Bump io-classes and co to 1.6 --- cabal.project | 4 ++-- fs-api/CHANGELOG.md | 1 + fs-api/fs-api.cabal | 2 +- fs-sim/fs-sim.cabal | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/cabal.project b/cabal.project index e08f061..5ab8103 100644 --- a/cabal.project +++ b/cabal.project @@ -12,9 +12,9 @@ repository cardano-haskell-packages index-state: -- Bump this if you need newer packages from Hackage - , hackage.haskell.org 2024-05-01T04:59:38Z + , hackage.haskell.org 2024-06-07T00:00:00Z -- Bump this if you need newer packages from CHaP - , cardano-haskell-packages 2024-04-30T19:46:33Z + , cardano-haskell-packages 2024-06-07T00:00:00Z packages: fs-api diff --git a/fs-api/CHANGELOG.md b/fs-api/CHANGELOG.md index c530bd8..18a8d33 100644 --- a/fs-api/CHANGELOG.md +++ b/fs-api/CHANGELOG.md @@ -31,6 +31,7 @@ * Add a clarification in the documentation of `FsPath` that the user is responsible for picking sensible directory/file names. +* Bump upper version bounds for `io-classes` to `1.6` ## 0.2.0.1 -- 2023-10-30 diff --git a/fs-api/fs-api.cabal b/fs-api/fs-api.cabal index 9b9617d..584572f 100644 --- a/fs-api/fs-api.cabal +++ b/fs-api/fs-api.cabal @@ -46,7 +46,7 @@ library , digest , directory >=1.3 && <1.4 , filepath >=1.4 && <1.5 - , io-classes >=0.3 && <1.5 + , io-classes >=0.3 && <1.6 , primitive ^>=0.9 , safe-wild-cards ^>=1.0 , text >=1.2 && <2.2 diff --git a/fs-sim/fs-sim.cabal b/fs-sim/fs-sim.cabal index 73877f6..8134e71 100644 --- a/fs-sim/fs-sim.cabal +++ b/fs-sim/fs-sim.cabal @@ -41,12 +41,12 @@ library , bytestring >=0.10 && <0.13 , containers >=0.5 && <0.7 , fs-api ^>=0.2 - , io-classes >=0.3 && <1.5 + , io-classes >=0.3 && <1.6 , mtl , primitive ^>=0.9 , QuickCheck , safe-wild-cards ^>=1.0 - , strict-stm >=0.3 && <1.5 + , strict-stm >=0.3 && <1.6 , text >=1.2 && <2.2 ghc-options: From 5c30196d8d8bee68f64cbe2d6f10a4fd67a4d1fc Mon Sep 17 00:00:00 2001 From: Joris Dral Date: Thu, 6 Jun 2024 17:50:01 +0200 Subject: [PATCH 2/2] Fix typo's in changelog --- fs-api/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs-api/CHANGELOG.md b/fs-api/CHANGELOG.md index 18a8d33..dab4b6b 100644 --- a/fs-api/CHANGELOG.md +++ b/fs-api/CHANGELOG.md @@ -25,7 +25,7 @@ `hGetBufExactly`, `hGetBufExactlyAt`, `hPutBufExactly`, and `hPutBufExactlyAt`. * `NFData` instances for `FsPath`, `HasFS` and `Handle`. -* Add 'FsPath' combinators: `(<.>)` and `addExtension`, `()` and `combine. +* Add `FsPath` combinators: `(<.>)` and `addExtension`, `()` and `combine`. ### Patch