packages feed

sak 0.1.0.0 → 0.1.0.1

raw patch · 4 files changed

+7/−2 lines, 4 files

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # sak +## 0.1.0.1++  * Fix bug with default bz2 settings+ ## 0.1.0.0  Initial release
sak.cabal view
@@ -1,6 +1,6 @@ cabal-version:      1.18 name:               sak-version:            0.1.0.0+version:            0.1.0.1 license:            BSD3 license-file:       LICENSE copyright:          Copyright: (c) 2020 Vanessa McHale
src/Compression.hs view
@@ -115,6 +115,7 @@ toInt Lzma (Custom i) = levelGuard (0, 9) i toInt BZip Best       = 9 toInt BZip Fastest    = 1+toInt BZip (Custom 6) = 7 toInt BZip (Custom i) = i toInt GZip Best       = 9 toInt GZip Fastest    = 0
src/Main.hs view
@@ -115,7 +115,7 @@ topLevel = info (helper <*> versionMod <*> cmd)     (fullDesc     <> progDesc "A Haskell compressor tool"-    <> header "sak - a Swiss-army knife for archiving and compressing")+    <> header "sak - a Swiss-army knife for compression")  main :: IO () main = run =<< execParser topLevel