end-of-exe 0.1.1.0 → 0.1.2.0
raw patch · 4 files changed
+10/−3 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- EndOfExe2.hs +2/−1
- README.md +3/−1
- end-of-exe.cabal +1/−1
ChangeLog.md view
@@ -8,3 +8,7 @@ * First version revised A. Fixed some documentation issues. Some minor documentation improvements. +## 0.1.2.0 -- 2024-01-05++* First version revised B. Some documentation improvements.+
EndOfExe2.hs view
@@ -20,7 +20,8 @@ import System.IO.Unsafe (unsafePerformIO,unsafeDupablePerformIO) -- | Can be used instead of 'System.Info.os' to check whether the executable ends in \".exe\". The function returns 'IO' 'Nothing' if there is neither --- @ys@ nor @(ys ++ ".exe")@ names for executables in the search path. It can also search in other locations and its behaviour is OS dependent. For more information, please, refer to the link: https://hackage.haskell.org/package/directory-1.3.4.0/docs/System-Directory.html#v:findExecutable+-- @ys@ nor @(ys ++ ".exe")@ names for executables in the search path. It can also search in other locations and its behaviour is OS dependent. For more information, please, refer to the link: <https://hackage.haskell.org/package/directory-1.3.4.0/docs/System-Directory.html#v:findExecutable>+-- For more information, how the executable is searched, see also the following address: <https://hackage.haskell.org/package/process-1.6.18.0/docs/System-Process.html#t:CmdSpec> maybeEndOfExecutable :: String -> IO (Maybe String) maybeEndOfExecutable ys = do xs <- D.findExecutable ys
README.md view
@@ -1,9 +1,11 @@ Devotion ======== -P.S.: the author would like to devote this project to support the [Foundation Gastrostars](https://gastrostars.nl).+The author would like to devote this project to support the [Foundation Gastrostars](https://gastrostars.nl). The foundation founder is [Emma Kok](https://www.emmakok.nl).++On the 05/01/2024 Emma starts a world tour with [André Rieu and Johann Strauss Orchestra](https://www.andrerieu.com). Besides, you can support Ukraine and Ukrainian people.
end-of-exe.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: end-of-exe-version: 0.1.1.0+version: 0.1.2.0 synopsis: A small library to deal with executable endings description: A small library to deal with executable endings. Uses a Maybe data representation inside an IO monad.