diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # sak
 
+## 0.1.0.1
+
+  * Fix bug with default bz2 settings
+
 ## 0.1.0.0
 
 Initial release
diff --git a/sak.cabal b/sak.cabal
--- a/sak.cabal
+++ b/sak.cabal
@@ -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
diff --git a/src/Compression.hs b/src/Compression.hs
--- a/src/Compression.hs
+++ b/src/Compression.hs
@@ -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
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -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
