diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,11 +1,12 @@
 # lzlib
 
-## 1.0.0.01
+## 1.0.1.0
 
-  * Remove `Codec.Lzip.Raw`
+  * Export `lZApiVersion` and `lZVersion`
 
 ## 1.0.0.0
 
+  * Remove `Codec.Lzip.Raw`
   * Support older GHCs
   * Use `ForeignPtr` for raw bindings
   * Stream lazily
diff --git a/lzlib.cabal b/lzlib.cabal
--- a/lzlib.cabal
+++ b/lzlib.cabal
@@ -1,6 +1,6 @@
 cabal-version:      1.18
 name:               lzlib
-version:            1.0.0.2
+version:            1.0.1.0
 license:            BSD3
 license-file:       LICENSE
 copyright:          Copyright: (c) 2019-2020 Vanessa McHale
diff --git a/src/Codec/Lzip.hs b/src/Codec/Lzip.hs
--- a/src/Codec/Lzip.hs
+++ b/src/Codec/Lzip.hs
@@ -8,6 +8,9 @@
                   , decompress
                   , compressFile
                   , CompressionLevel (..)
+                  -- * Miscellany
+                  , lZVersion
+                  , lZApiVersion
                   ) where
 
 import           Codec.Lzip.Raw
