packages feed

rio 0.1.15.0 → 0.1.15.1

raw patch · 3 files changed

+7/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for rio +## 0.1.15.1++* Replace `canonicalizePath` with `makeAbsolute` [#217](https://github.com/commercialhaskell/rio/issues/217)+ ## 0.1.15.0  * Include source in log messages
rio.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 88c70b06dfc2b555bc230e489348124cfcbdc0bdbf0ef59810cae48053937a10+-- hash: 30ccd150c619c6c6fa96ebc7d3b33d6cb4ea1b2e45228e4cba5c35c1bc64cd63  name:           rio-version:        0.1.15.0+version:        0.1.15.1 synopsis:       A standard library for Haskell description:    See README and Haddocks at <https://www.stackage.org/package/rio> category:       Control
src/RIO/Process.hs view
@@ -588,7 +588,7 @@   -- ^ Full path to that executable on success findExecutable name | any FP.isPathSeparator name = do   names <- addPcExeExtensions name-  testFPs (pure $ Left $ ExecutableNotFoundAt name) D.canonicalizePath names+  testFPs (pure $ Left $ ExecutableNotFoundAt name) D.makeAbsolute names findExecutable name = do   pc <- view processContextL   m <- readIORef $ pcExeCache pc