diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,6 +1,13 @@
+zip-archive 0.3.0.6
+
+  * Bump bytestring lower bound so toStrict is guaranteed (Benjamin Landers).
+
 zip-archive 0.3.0.5
 
-  * Fix `OptLocation` option handling (EugeneN).
+  * Fix bug in `OptLocation` handling (EugeneN).  When using
+    `OptLocation folder False` (for adding files to an archive into a
+    folder without preserving full path hierarchy), original files'
+    names were ignored, resulting in all the files getting the same name.
 
 zip-archive 0.3.0.4
 
diff --git a/zip-archive.cabal b/zip-archive.cabal
--- a/zip-archive.cabal
+++ b/zip-archive.cabal
@@ -1,5 +1,5 @@
 Name:                zip-archive
-Version:             0.3.0.5
+Version:             0.3.0.6
 Cabal-Version:       >= 1.10
 Build-type:          Custom
 Synopsis:            Library for creating and modifying zip archives.
@@ -30,7 +30,7 @@
     Build-depends:   base >= 3 && < 5, pretty, containers
   else
     Build-depends:   base < 3
-  Build-depends:     binary >= 0.5, zlib, filepath, bytestring >= 0.9.0,
+  Build-depends:     binary >= 0.5, zlib, filepath, bytestring >= 0.10.0,
                      array, mtl, text >= 0.11, old-time, digest >= 0.0.0.1,
                      directory, time
   Exposed-modules:   Codec.Archive.Zip
