diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -2,6 +2,10 @@
 
 ## Unreleased changes
 
+## 0.0.2.1
+
+- Fixed cabal versions that were missing due to hpack
+
 ## 0.0.2.0
 
 - [#4](https://github.com/parsonsmatt/glob-imports/pull/4)
diff --git a/glob-imports.cabal b/glob-imports.cabal
--- a/glob-imports.cabal
+++ b/glob-imports.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           glob-imports
-version:        0.0.2.0
+version:        0.0.2.1
 synopsis:       Import modules for metaprogramming
 description:    This package provides an executable for importing modules in a directory and splicing those in. Please see the README on GitHub at <https://github.com/parsonsmatt/glob-imports#readme>
 category:       Metaprogramming
@@ -49,16 +49,21 @@
       TypeOperators
   ghc-options: -Wall
   build-depends:
-      base >=4.12 && <5
+      Glob
+    , base >=4.12 && <5
+    , bytestring
     , directory
     , discover-instances
     , dlist
     , file-embed
     , filepath
     , mtl
+    , optparse-applicative
     , some-dict-of
+    , split
     , template-haskell >=2.16.0.0
     , text
+    , typed-process
   default-language: Haskell2010
 
 executable glob-imports
@@ -84,7 +89,9 @@
       TypeOperators
   ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
   build-depends:
-      base >=4.12 && <5
+      Glob
+    , base >=4.12 && <5
+    , bytestring
     , directory
     , discover-instances
     , dlist
@@ -92,9 +99,12 @@
     , filepath
     , glob-imports
     , mtl
+    , optparse-applicative
     , some-dict-of
+    , split
     , template-haskell >=2.16.0.0
     , text
+    , typed-process
   default-language: Haskell2010
 
 test-suite glob-imports-test
@@ -124,7 +134,9 @@
   build-tool-depends:
       hspec-discover:hspec-discover
   build-depends:
-      base >=4.12 && <5
+      Glob
+    , base >=4.12 && <5
+    , bytestring
     , directory
     , discover-instances
     , dlist
@@ -134,7 +146,10 @@
     , hspec
     , hspec-discover
     , mtl
+    , optparse-applicative
     , some-dict-of
+    , split
     , template-haskell >=2.16.0.0
     , text
+    , typed-process
   default-language: Haskell2010
