dyre 0.8.9 → 0.8.10
raw patch · 4 files changed
+8/−8 lines, 4 filesdep +executable-pathPVP ok
version bump matches the API change (PVP)
Dependencies added: executable-path
API changes (from Hackage documentation)
Files
- Config/Dyre/Options.hs +5/−4
- Config/Dyre/Paths.hs +1/−1
- Tests/allTests.sh +0/−1
- dyre.cabal +2/−2
Config/Dyre/Options.hs view
@@ -27,10 +27,11 @@ , getStatePersist ) where -import Data.List (isPrefixOf)-import Data.Maybe (fromJust)-import System.IO.Storage (withStore, putValue, getValue, getDefaultValue)-import System.Environment (getArgs, getExecutablePath, getProgName, withArgs)+import Data.List (isPrefixOf)+import Data.Maybe (fromJust)+import System.IO.Storage (withStore, putValue, getValue, getDefaultValue)+import System.Environment (getArgs, getProgName, withArgs)+import System.Environment.Executable (getExecutablePath) import Config.Dyre.Params
Config/Dyre/Paths.hs view
@@ -4,7 +4,7 @@ import System.FilePath ( (</>), (<.>), takeExtension ) import System.Directory (getCurrentDirectory, doesFileExist, getModificationTime) import System.Environment.XDG.BaseDir (getUserCacheDir, getUserConfigDir)-import System.Environment (getExecutablePath)+import System.Environment.Executable (getExecutablePath) import Data.Time import Config.Dyre.Params
Tests/allTests.sh view
@@ -7,7 +7,6 @@ TEST_RESULT=`./runTest.sh` if [ "$TEST_RESULT" != 'Passed' ]; then echo "$TEST_RESULT in test $TESTDIR"- rm -r working exit 1 fi cd ..
dyre.cabal view
@@ -1,5 +1,5 @@ name: dyre-version: 0.8.9+version: 0.8.10 category: Development, Configuration synopsis: Dynamic reconfiguration in Haskell @@ -43,7 +43,7 @@ Config.Dyre.Relaunch build-depends: base >= 4 && < 5, process, filepath, directory, ghc-paths, time, binary,- xdg-basedir, io-storage+ executable-path, xdg-basedir, io-storage if os(windows) build-depends: Win32