packages feed

ethereum-analyzer-cli 3.0.0 → 3.1.0

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ethereum-analyzer-cli.cabal view
@@ -1,5 +1,5 @@ name:                ethereum-analyzer-cli-version:             3.0.0+version:             3.1.0 synopsis:            A CLI frontend for ethereum-analyzer. homepage:            https://github.com/zchn/ethereum-analyzer license:             Apache-2.0@@ -21,7 +21,7 @@ source-repository this   type:     git   location: https://github.com/zchn/ethereum-analyzer-  tag:      v3.0.0+  tag:      v3.1.0   subdir:   ethereum-analyzer-cli  library
exec_src/AnalyzeMain.hs view
@@ -40,7 +40,7 @@ analyze flags@AnalyzeFlags {astJson = theAstJson, debug = debug} = do   when debug $ putText $ show flags   content <--    if (theAstJson == "" || theAstJson == "-")+    if theAstJson == "" || theAstJson == "-"       then getContents       else readFile $ toS theAstJson   case decodeContracts content of