diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,11 @@
+## 0.3.2.1
+
+* Add support for help in subcommands. Thanks to Vanessa McHale (GitHub: vmchale) for this contribution
+
 ## 0.3.2.0
 
-* Fix `-v` switch for hap.
-* Add `vc_action` to control version control related tasks.
+* Fix `-v` switch for hap. Thanks to Sibi (GitHub: psibi) for this contribution
+* Add `vc_action` to control version control related tasks. Thanks to Sibi (GitHub: psibi) for this contribution
 
 ## 0.3.1.0
 
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -58,7 +58,7 @@
 
 optionParser :: Parser Opts
 optionParser = Opts
-  <$> subparser
+  <$> hsubparser
   ( command "deploy"
     (info deployParser (progDesc "Deploy a new release")) <>
     command "rollback"
diff --git a/hapistrano.cabal b/hapistrano.cabal
--- a/hapistrano.cabal
+++ b/hapistrano.cabal
@@ -1,5 +1,5 @@
 name:                hapistrano
-version:             0.3.2.0
+version:             0.3.2.1
 synopsis:            A deployment library for Haskell applications
 description:
   .
@@ -60,7 +60,7 @@
   hs-source-dirs:      app
   main-is:             Main.hs
   other-modules:       Config
-  build-depends:       aeson              >= 0.11 && < 1.2
+  build-depends:       aeson              >= 0.11 && < 1.3
                      , async              >= 2.0.1.6 && < 2.2
                      , base               >= 4.6 && < 5.0
                      , hapistrano
