diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,11 +2,14 @@
 
 `simple-cmd-args` uses [PVP Versioning](https://pvp.haskell.org).
 
-## 0.1.2
+## 0.1.3 (2019-09-12)
+- export <|>
+
+## 0.1.2 (2019-05-24)
 - add flagWith and flagWith'
 - export Parser, auto, optional
 
-## 0.1.1
+## 0.1.1 (2019-04-08)
 - add switchWith, strOptionWith, optionWith, optionalWith,
   strOptionalWith, argumentWith
 - export simpleCmdArgsWithMods
diff --git a/SimpleCmdArgs.hs b/SimpleCmdArgs.hs
--- a/SimpleCmdArgs.hs
+++ b/SimpleCmdArgs.hs
@@ -26,10 +26,12 @@
    argumentWith,
    Parser,
    auto,
-   optional
+   optional,
+   (<|>)
   )
 where
 
+import Control.Applicative ((<|>))
 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.2
+version:             0.1.3
 synopsis:            Simple command args parsing and execution
 description:
             This is a small wrapper over optparse-applicative which
@@ -19,7 +19,7 @@
 extra-doc-files:     README.md
                    , CHANGELOG.md
 tested-with:         GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2,
-                     GHC == 8.4.4, GHC == 8.6.5
+                     GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1
 
 source-repository head
   type:                git
