packages feed

hie-bios 0.6.0 → 0.6.1

raw patch · 3 files changed

+14/−6 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ HIE.Bios.Cradle: readProcessWithCwd :: FilePath -> FilePath -> [String] -> String -> IO (CradleLoadResult String)

Files

ChangeLog.md view
@@ -1,24 +1,31 @@ # ChangeLog hie-bios +## 2020-07-12 - 0.6.1++### Bug Fixes++* Expose 'readProcessWithCwd' [#227](https://github.com/mpickering/hie-bios/pull/227)+* Fix mistakes in the ChangeLog [#228](https://github.com/mpickering/hie-bios/pull/228)+ ## 2020-07-12 - 0.6.0 -### New Features:+### New Features  * Add getRuntimeGhcLibDir and getRuntimeGhcVersion functions through a new runGhcCmd API [#207](https://github.com/mpickering/hie-bios/pull/207) [#224](https://github.com/mpickering/hie-bios/pull/224)+* Add shell and dependency-shell attributes to bios cradle type [#188](https://github.com/mpickering/hie-bios/pull/188)+* Store dependencies in CradleError [#186](https://github.com/mpickering/hie-bios/pull/186) -### Bug Fixes:+### Bug Fixes  * Improve the README [#225](https://github.com/mpickering/hie-bios/pull/225) * Detect implicit cabal cradle in the absence of cabal.project [#221](https://github.com/mpickering/hie-bios/pull/221) * Dont resolve symlinks in cradle discovery [#219](https://github.com/mpickering/hie-bios/pull/219) * Make Cradle dependencies for stack and cabal more reasonable [#209](https://github.com/mpickering/hie-bios/pull/209)-* This ships with a known bug: `stack` lists cradle dependencies from+  * This ships with a known bug: `stack` lists cradle dependencies from 	sub-directories incorrectly. * Fix absolute mains [#205](https://github.com/mpickering/hie-bios/pull/205) * Improve filtering of rts arguments from stack and cabal cradles [#197](https://github.com/mpickering/hie-bios/pull/197) * Make package db paths absolute [#193](https://github.com/mpickering/hie-bios/pull/193)-* Add shell and dependency-shell attributes to bios cradle type [#188](https://github.com/mpickering/hie-bios/pull/188)-* Store dependencies in CradleError [#186](https://github.com/mpickering/hie-bios/pull/186) * Add cabal.project.local to cabal cradle dependencies [#184](https://github.com/mpickering/hie-bios/pull/184) * Remove outdated reference to $HIE_BIOS_GHC[_ARGS] 
hie-bios.cabal view
@@ -1,6 +1,6 @@ Cabal-Version:          2.2 Name:                   hie-bios-Version:                0.6.0+Version:                0.6.1 Author:                 Matthew Pickering <matthewtpickering@gmail.com> Maintainer:             Matthew Pickering <matthewtpickering@gmail.com> License:                BSD-3-Clause
src/HIE/Bios/Cradle.hs view
@@ -18,6 +18,7 @@     , isOtherCradle     , getCradle     , readProcessWithOutputFile+    , readProcessWithCwd     , makeCradleResult   ) where