diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
 
 `simple-cmd-args` uses [PVP Versioning](https://pvp.haskell.org).
 
+## 0.1.4 (2019-10-29)
+- export many, some, str
+- export <$> and <*> on older ghc7
+
 ## 0.1.3 (2019-09-12)
 - export <|>
 
diff --git a/SimpleCmdArgs.hs b/SimpleCmdArgs.hs
--- a/SimpleCmdArgs.hs
+++ b/SimpleCmdArgs.hs
@@ -26,12 +26,24 @@
    argumentWith,
    Parser,
    auto,
+   many,
    optional,
-   (<|>)
+   some,
+   str,
+   (<|>),
+#if (defined(MIN_VERSION_base) && MIN_VERSION_base(4,8,0))
+#else
+   (<$>), (<*>)
+#endif
   )
 where
 
-import Control.Applicative ((<|>))
+import Control.Applicative ((<|>),
+#if (defined(MIN_VERSION_base) && MIN_VERSION_base(4,8,0))
+#else
+                            (<$>), (<*>)
+#endif
+                           )
 import Control.Monad (join)
 #if (defined(MIN_VERSION_base) && MIN_VERSION_base(4,8,0))
 #else
diff --git a/simple-cmd-args.cabal b/simple-cmd-args.cabal
--- a/simple-cmd-args.cabal
+++ b/simple-cmd-args.cabal
@@ -1,6 +1,6 @@
 cabal-version:       1.18
 name:                simple-cmd-args
-version:             0.1.3
+version:             0.1.4
 synopsis:            Simple command args parsing and execution
 description:
             This is a small wrapper over optparse-applicative which
@@ -18,7 +18,8 @@
 build-type:          Simple
 extra-doc-files:     README.md
                    , CHANGELOG.md
-tested-with:         GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2,
+tested-with:         GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4,
+                     GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2,
                      GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1
 
 source-repository head
