end-of-exe 0.1.0.0 → 0.1.1.0
raw patch · 3 files changed
+7/−7 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +5/−1
- EndOfExe2.hs +1/−3
- end-of-exe.cabal +1/−3
ChangeLog.md view
@@ -1,6 +1,10 @@ # Revision history for end-of-exe -## 0.1.0.0 -- 2024-01-04d+## 0.1.0.0 -- 2024-01-04 * First version. Released on an unsuspecting world. Is a fork of the now deprecated mmsyn3 package. Added some generalized functionality to better support other versions of Windows besides 7.++## 0.1.1.0 -- 2024-01-04++* First version revised A. Fixed some documentation issues. Some minor documentation improvements.
EndOfExe2.hs view
@@ -6,8 +6,6 @@ -- -- A small library to deal with executable endings. Uses a Maybe data representation inside an IO monad. ----- Poorly tested for Windows (just Windows 7). Well, it can be extended so that it can basically support also other versions and OSes.--- -- It is a fork of now deprecated library [mmsyn3](https://hackage.haskell.org/package/mmsyn3). {-# LANGUAGE NoImplicitPrelude #-}@@ -69,7 +67,7 @@ | otherwise = unsafePerformIO . endOfExe $ xs {-# INLINE showE0 #-} --- | If executable not found, then returns empty 'String'.+-- | If executable not found, then returns empty 'String'. Uses 'unsafeDupablePerformIO'. showE0Dup :: String -> String showE0Dup xs | null xs = ""
end-of-exe.cabal view
@@ -2,12 +2,10 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: end-of-exe-version: 0.1.0.0+version: 0.1.1.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. - .- Poorly tested for Windows (just Windows 7). Well, it can be extended so that it can basically support also other versions and OSes. . It is a fork of now deprecated library [mmsyn3](https://hackage.haskell.org/package/mmsyn3).