packages feed

hie-bios 0.3.0 → 0.3.1

raw patch · 3 files changed

+8/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog view
@@ -1,4 +1,9 @@-xxxx - 0.3+2019-12-18 - 0.3.1++	* Fix bug in the windows wrapper script (#108)+++2019-12-15 - 0.3.0  	* Add multi cradle, cabal multi cradle and none cradle 	* Remove obelisk, bazel and default cradle types
hie-bios.cabal view
@@ -1,6 +1,6 @@ Cabal-Version:          2.2 Name:                   hie-bios-Version:                0.3.0+Version:                0.3.1 Author:                 Matthew Pickering <matthewtpickering@gmail.com> Maintainer:             Matthew Pickering <matthewtpickering@gmail.com> License:                BSD-3-Clause
wrappers/cabal.hs view
@@ -10,7 +10,7 @@   args <- getArgs   output_file <- getEnv "HIE_BIOS_OUTPUT"   ghcPath <- getEnv "HIE_BIOS_GHC"-  ghcPathArgs <- fmap unwords (getEnv "HIE_BIOS_GHC_ARGS")+  ghcPathArgs <- fmap words (getEnv "HIE_BIOS_GHC_ARGS")   case args of     "--interactive":_ -> do       h <- openFile output_file AppendMode