packages feed

opml-conduit 0.6.0.2 → 0.6.0.3

raw patch · 4 files changed

+4/−5 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Text/OPML/Lens.hs view
@@ -1,7 +1,7 @@ {-# OPTIONS_GHC -fno-warn-missing-signatures #-} {-# LANGUAGE RankNTypes      #-} {-# LANGUAGE TemplateHaskell #-}-module Text.OPML.Lens where+module Text.OPML.Lens (module Text.OPML.Lens) where  -- {{{ Imports import           Lens.Simple@@ -34,7 +34,7 @@   ] ''OpmlHead  expansionStateL :: Traversal' OpmlHead Int-expansionStateL inj a@OpmlHead { expansionState = es } = (\x -> a { expansionState = x }) <$> sequenceA (map inj es)+expansionStateL inj a@OpmlHead { expansionState = es } = (\x -> a { expansionState = x }) <$> traverse inj es {-# INLINE expansionStateL #-}  -- * 'OutlineSubscription' lenses
Text/OPML/Types.hs view
@@ -1,7 +1,6 @@ {-# LANGUAGE DeriveGeneric         #-} {-# LANGUAGE FlexibleInstances     #-} {-# LANGUAGE MultiParamTypeClasses #-}-{-# LANGUAGE OverloadedStrings     #-} {-# LANGUAGE StandaloneDeriving    #-} -- | OPML is an XML format for outlines. --
opml-conduit.cabal view
@@ -1,5 +1,5 @@ name:                opml-conduit-version:             0.6.0.2+version:             0.6.0.3 synopsis:            Streaming parser/renderer for the OPML 2.0 format. description:     This library implements the OPML 2.0 standard (<http://dev.opml.org/spec2.html>) as a 'conduit' parser/renderer.
test/Arbitrary.hs view
@@ -7,7 +7,7 @@ {-# LANGUAGE StandaloneDeriving #-} -- | External 'Arbitrary' instances used by OPML types. -- All instances are defined through the 'OpmlGen' wrapper to avoid conflicts.-module Arbitrary where+module Arbitrary (module Arbitrary) where  -- {{{ Imports import           Data.ByteString           (ByteString)