diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for constraints-emerge
 
+## 0.1.1 -- 2018-04-18
+
+* Fix some error messages.
+
 ## 0.1 -- 2018-04-18
 
 * First version. Released on an unsuspecting world.
diff --git a/Data/Constraint/Emerge/Plugin.hs b/Data/Constraint/Emerge/Plugin.hs
--- a/Data/Constraint/Emerge/Plugin.hs
+++ b/Data/Constraint/Emerge/Plugin.hs
@@ -147,9 +147,10 @@
   [ ppr (tcl_loc $ ctl_env loc)
   , hang empty 2 $ (char '•') <+>
     (
-      hang empty 2 $ text "Polymorphic type variables bound in the implicit constraint of 'JustDoIt'" $$ hang empty 2 (ppr (ctl_origin loc))
+      hang empty 2 $ text "Polymorphic type variables bound in the implicit constraint of 'Emerge'"
+                  $$ hang empty 2 (ppr (ctl_origin loc))
     )
-  , hang empty 2 $ (char '•') <+> text "Probable fix: add an explicit 'JustDoIt ("
+  , hang empty 2 $ (char '•') <+> text "Probable fix: add an explicit 'Emerge ("
       <> ppr c
       <+> foldl (<+>) empty (fmap ppr $ ts )
       <> text ")' constraint to the type signature"
@@ -161,8 +162,10 @@
   [ ppr (tcl_loc $ ctl_env loc)
   , hang empty 2 $ (char '•') <+>
     (
-      hang empty 2 $ text "Polymorphic constraint bound in the implicit constraint of 'JustDoIt'" $$ hang empty 2 (ppr (ctl_origin loc))
+      hang empty 2 $ text "Polymorphic constraint bound in the implicit constraint of 'Emerge'"
+                  $$ hang empty 2 (ppr (ctl_origin loc))
     )
-  , hang empty 2 $ (char '•') <+> text "Probable fix: add an explicit 'JustDoIt c'"
+  , hang empty 2 $ (char '•') <+> text "Probable fix: add an explicit 'Emerge c'"
       <+> text "constraint to the type signature"
   ]
+
diff --git a/constraints-emerge.cabal b/constraints-emerge.cabal
--- a/constraints-emerge.cabal
+++ b/constraints-emerge.cabal
@@ -1,5 +1,5 @@
 name:                constraints-emerge
-version:             0.1
+version:             0.1.1
 synopsis:            Defer instance lookups until runtime
 description:
     This plugin allows you to write
