diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Revision history for tasty-sugar
 
+## 1.2.0.0 -- 2022-05-16
+
+ * Update for logict 0.8.0.0 breaking change.
+ * Fix small issues in example usage haddock.
+
 ## 1.1.1.0 -- 2021-04-19
 
  * Use 'kvitable' to render `--showsearch` output.
diff --git a/src/Test/Tasty/Sugar.hs b/src/Test/Tasty/Sugar.hs
--- a/src/Test/Tasty/Sugar.hs
+++ b/src/Test/Tasty/Sugar.hs
@@ -20,8 +20,8 @@
 --
 -- Example:
 --
--- > import Test.Tasty as T
--- > import Test.Tasty.Options
+-- > import qualified Test.Tasty as T
+-- > import Test.Tasty.Hunit ( testCase, (@?=) )
 -- > import Test.Tasty.Sugar
 -- > import Numeric.Natural
 -- >
@@ -43,11 +43,10 @@
 -- >
 -- > mkTest :: Sweets -> Natural -> Expectation -> IO [T.TestTree]
 -- > mkTest s n e = do
--- >    inp <- readFile inpF
 -- >    exp <- reads <$> readFile $ expectedFile e
 -- >    return [ testCase (rootMatchName s <> " #" <> show n) $ do
 -- >               Just inpF <- lookup "inputs" $ associated e
--- >               result <- testSomething inp
+-- >               result <- testSomething inpF
 -- >               result @?= exp
 -- >           ]
 --
@@ -94,11 +93,9 @@
 import qualified Data.List as L
 import           Data.Maybe ( isJust, isNothing, fromJust )
 import           Data.Proxy
-import           Data.Tagged
 import qualified Data.Text as T
 import           Data.Typeable ( Typeable )
 import           Numeric.Natural ( Natural )
-import           Options.Applicative
 import           Prettyprinter
 import           System.Directory ( listDirectory )
 import           Test.Tasty.Ingredients
diff --git a/src/internal/Test/Tasty/Sugar/AssocCheck.hs b/src/internal/Test/Tasty/Sugar/AssocCheck.hs
--- a/src/internal/Test/Tasty/Sugar/AssocCheck.hs
+++ b/src/internal/Test/Tasty/Sugar/AssocCheck.hs
@@ -9,6 +9,7 @@
   )
   where
 
+import           Control.Monad
 import           Control.Monad.Logic
 import qualified Data.List as L
 import           Data.Maybe ( catMaybes )
diff --git a/src/internal/Test/Tasty/Sugar/ExpectCheck.hs b/src/internal/Test/Tasty/Sugar/ExpectCheck.hs
--- a/src/internal/Test/Tasty/Sugar/ExpectCheck.hs
+++ b/src/internal/Test/Tasty/Sugar/ExpectCheck.hs
@@ -8,6 +8,7 @@
   )
   where
 
+import           Control.Monad
 import           Control.Monad.Logic
 import           System.FilePath ( (</>) )
 import qualified Data.List as L
diff --git a/src/internal/Test/Tasty/Sugar/ParamCheck.hs b/src/internal/Test/Tasty/Sugar/ParamCheck.hs
--- a/src/internal/Test/Tasty/Sugar/ParamCheck.hs
+++ b/src/internal/Test/Tasty/Sugar/ParamCheck.hs
@@ -8,6 +8,7 @@
   )
   where
 
+import           Control.Monad
 import           Control.Monad.Logic
 import qualified Data.List as L
 import           Data.Maybe ( fromMaybe )
diff --git a/src/internal/Test/Tasty/Sugar/RootCheck.hs b/src/internal/Test/Tasty/Sugar/RootCheck.hs
--- a/src/internal/Test/Tasty/Sugar/RootCheck.hs
+++ b/src/internal/Test/Tasty/Sugar/RootCheck.hs
@@ -9,6 +9,7 @@
   )
   where
 
+import           Control.Monad
 import           Control.Monad.Logic
 import qualified Data.List as L
 import           Data.Maybe ( catMaybes, isNothing )
diff --git a/tasty-sugar.cabal b/tasty-sugar.cabal
--- a/tasty-sugar.cabal
+++ b/tasty-sugar.cabal
@@ -1,7 +1,7 @@
 cabal-version:       2.0
 
 name:                tasty-sugar
-version:             1.1.1.0
+version:             1.2.0.0
 synopsis:            Tests defined by Search Using Golden Answer References
 description:
   .
@@ -64,7 +64,6 @@
                      , logict >= 0.7.0.3 && < 0.9
                      , optparse-applicative >= 0.15 && < 0.17
                      , prettyprinter >= 1.7.0 && < 1.8
-                     , tagged >= 0.8 && < 0.9
                      , tasty >= 1.2 && < 1.5
                      , tasty-sugar-internal
                      , text >= 1.2 && < 1.3
@@ -92,6 +91,7 @@
                    , kvitable >= 1.0 && < 1.1
                    , logict
                    , microlens >= 0.4 && < 0.5
+                   , mtl >= 2.2 && < 2.3
                    , prettyprinter >= 1.7 && < 1.8
                    , text >= 1.2 && < 1.3
   hs-source-dirs:    src/internal
