executable-hash 0.2.0.2 → 0.2.0.3
raw patch · 3 files changed
+9/−2 lines, 3 filesnew-uploaderPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +6/−0
- System/Executable/Hash/Internal.hs +2/−1
- executable-hash.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,9 @@+0.2.0.3+=======++Add a `PackageImport` to avoid conflicting module names for `Crypto.Hash.SHA1`+introduced by the `cryptohash-sha1` package.+ 0.2.0.0 =======
System/Executable/Hash/Internal.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE PackageImports #-} {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE OverloadedStrings #-} @@ -6,7 +7,7 @@ module System.Executable.Hash.Internal where import Control.Exception (SomeException, handle)-import Crypto.Hash.SHA1 (hash)+import "cryptohash" Crypto.Hash.SHA1 (hash) import qualified Data.ByteString as BS import Data.FileEmbed (dummySpaceWith, injectWith) import Language.Haskell.TH (Q, Exp)
executable-hash.cabal view
@@ -1,5 +1,5 @@ name: executable-hash-version: 0.2.0.2+version: 0.2.0.3 synopsis: Provides the SHA1 hash of the program executable description: See README.md homepage: https://github.com/fpco/executable-hash