packages feed

heddit 0.0.2 → 0.0.3

raw patch · 3 files changed

+6/−12 lines, 3 filesdep −monad-loopsPVP ok

version bump matches the API change (PVP)

Dependencies removed: monad-loops

API changes (from Hackage documentation)

Files

CHANGELOG.org view
@@ -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~
examples/Paginating.hs view
@@ -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
heddit.cabal view
@@ -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