diff --git a/CHANGELOG.org b/CHANGELOG.org
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -1,5 +1,8 @@
 #+TITLE: CHANGELOG
 
+* 0.0.3
++ Fixes to cabal release
+
 * 0.0.2
 + Add more documentation and examples programs
 + Export ~Paginable~ class from ~Reddit.hs~
diff --git a/examples/Paginating.hs b/examples/Paginating.hs
--- a/examples/Paginating.hs
+++ b/examples/Paginating.hs
@@ -104,10 +104,3 @@
     pure $ nextListing ^? #children . _head
   where
     firstPaginator = emptyPaginator & #limit .~ 10
-
-nTimes :: MonadReddit m => SubredditName -> m (Maybe Submission)
-nTimes = do
-    undefined
-  where
-    unfoldSubs paginator = do
-        undefined
diff --git a/heddit.cabal b/heddit.cabal
--- a/heddit.cabal
+++ b/heddit.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               heddit
-version:            0.0.2
+version:            0.0.3
 synopsis:           Reddit API bindings
 description:        See the README at https://gitlab.com/ngua/heddit
 license:            BSD-3-Clause
@@ -176,16 +176,14 @@
   import:           common-options, common-extensions
   hs-source-dirs:   examples
 
-  -- if !flag(examples)
-  --   buildable: False
+  if !flag(examples)
+    buildable: False
 
   build-depends:
     , base                >=4.13  && <5
-    , containers          ^>=0.6
     , generic-lens        >=1.1   && <2.2
     , heddit
     , microlens-platform  ^>=0.4.2
-    , monad-loops         ^>=0.4.3
     , text                ^>=1.2
 
   main-is:          Paginating.hs
