diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for applicable
 
-## 0.1.0.0 -- YYYY-mm-dd
+## 0.2.0.0 -- 2022-06-27
+
+* Fixed not exporting constructors
+
+## 0.1.0.0 -- 2022-06-27
 
 * First version. Released on an unsuspecting world.
diff --git a/Data/Applicable.hs b/Data/Applicable.hs
--- a/Data/Applicable.hs
+++ b/Data/Applicable.hs
@@ -16,15 +16,15 @@
 -}
 
 module Data.Applicable (
-  Applicable(($*)),
-  ApplyTo,
-  ApplyMap,
-  ApplyAp,
-  ApplyBind,
-  GroupAction,
-  ChurchBool,
-  ChurchNumeral,
-  ChurchTuple
+  Applicable(..),
+  ApplyTo(..),
+  ApplyMap(..),
+  ApplyAp(..),
+  ApplyBind(..),
+  GroupAction(..),
+  ChurchBool(..),
+  ChurchNumeral(..),
+  ChurchTuple(..)
 ) where
 
 import Data.List (genericIndex)
diff --git a/applicable.cabal b/applicable.cabal
--- a/applicable.cabal
+++ b/applicable.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.4
 name:               applicable
-version:            0.1.0.0
+version:            0.2.0.0
 synopsis:           A class for things that can be applied
 description:        A class for things that can be applied, and utility newtypes
 homepage:           https://github.com/schuelermine/applicable
