diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,11 @@
+# 1.0.1.0
+
+  * Export `unpackToDir` and `packFromFiles` from `Archive.Compression`
+
 # 1.0.0.0
 
   * Add `FP` type to allow the filepath type to be abstract
   * Add `toFP`, `packFromFilesRaw`, `unpackToDirRaw`
-  * Move `packFromFiles`, `unpackToDir` to `Archive.Compression`
 
 # 0.2.3.0
 
diff --git a/archive-sig.cabal b/archive-sig.cabal
--- a/archive-sig.cabal
+++ b/archive-sig.cabal
@@ -1,6 +1,6 @@
 cabal-version:   2.0
 name:            archive-sig
-version:         1.0.0.0
+version:         1.0.1.0
 license:         BSD3
 license-file:    LICENSE
 copyright:       Copyright: (c) 2019-2020 Vanessa McHale
diff --git a/src/Archive/Compression.hs b/src/Archive/Compression.hs
--- a/src/Archive/Compression.hs
+++ b/src/Archive/Compression.hs
@@ -4,6 +4,8 @@
                            , packFromFilesAndCompress
                            , packFromDirAndCompress
                            , packSrcDirAndCompress
+                           , unpackToDir
+                           , packFiles
                            ) where
 
 import           Archive
@@ -14,12 +16,12 @@
 type Decompressor = BSL.ByteString -> BSL.ByteString
 type Compressor = BSL.ByteString -> BSL.ByteString
 
--- | @since 1.0.0.0
+-- | @since 1.0.1.0
 packFiles :: [FilePath] -- ^ Files and directories to write to archive
           -> IO BSL.ByteString -- ^ 'BSL.ByteString' containing archive
 packFiles = packFilesRaw . fmap toFP
 
--- | @since 1.0.0.0
+-- | @since 1.0.1.0
 unpackToDir :: FilePath -> BSL.ByteString -> IO ()
 unpackToDir = unpackToDirRaw . toFP
 
