bluefin 0.0.14.0 → 0.0.14.1
raw patch · 3 files changed
+8/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- bluefin.cabal +1/−1
- src/Bluefin/Compound.hs +3/−3
CHANGELOG.md view
@@ -1,3 +1,7 @@+## 0.0.14.1++* Documentation changes only+ ## 0.0.14.0 * Add `hGetLine` and `hIsEOF` to `Bluefin.System.IO`
bluefin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: bluefin-version: 0.0.14.0+version: 0.0.14.1 license: MIT license-file: LICENSE author: Tom Ellis
src/Bluefin/Compound.hs view
@@ -502,7 +502,7 @@ -- mapHandle h = -- DynamicReader -- { askLRImpl = useImplUnder (askLRImpl h),- -- localLRImpl = \f k -> useImplUnder (localLRImpl h f k)+ -- localLRImpl = \\f k -> useImplUnder (localLRImpl h f k) -- } -- -- askLR ::@@ -524,12 +524,12 @@ -- (forall e. DynamicReader r e -> Eff (e :& es) a) -> -- Eff es a -- runDynamicReader r k =- -- runReader r $ \h -> do+ -- runReader r $ \\h -> do -- useImplIn -- k -- DynamicReader -- { askLRImpl = ask h,- -- localLRImpl = \f k' -> makeOp (local h f (useImpl k'))+ -- localLRImpl = \\f k' -> makeOp (local h f (useImpl k')) -- } -- @