atom-conduit 0.4.0.2 → 0.4.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/Atom/Conduit/Render.hs +0/−1
- Text/Atom/Lens.hs +2/−2
- Text/Atom/Types.hs +1/−1
- atom-conduit.cabal +1/−1
Text/Atom/Conduit/Render.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE DeriveAnyClass #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RankNTypes #-} -- | Streaming renderers for the Atom 1.0 standard.
Text/Atom/Lens.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE RankNTypes #-} {-# LANGUAGE TemplateHaskell #-}-module Text.Atom.Lens where+module Text.Atom.Lens (module Text.Atom.Lens) where -- {{{ Imports import Lens.Simple@@ -70,7 +70,7 @@ ] ''AtomPerson --personUriL :: Traversal' AtomPerson (URIRef a)---personUriL inj a@AtomPerson { personUri = u } = (\x -> a { personUri = x }) <$> sequenceA (fmap inj u)+--personUriL inj a@AtomPerson { personUri = u } = (\x -> a { personUri = x }) <$> traverse inj u makeLensesFor [ ("sourceAuthors", "sourceAuthorsL")
Text/Atom/Types.hs view
@@ -28,7 +28,7 @@ -- > </entry> -- > -- > </feed>-module Text.Atom.Types where+module Text.Atom.Types (module Text.Atom.Types) where -- {{{ Imports import Data.NonNull
atom-conduit.cabal view
@@ -1,5 +1,5 @@ name: atom-conduit-version: 0.4.0.2+version: 0.4.0.3 synopsis: Streaming parser/renderer for the Atom 1.0 standard (RFC 4287). description: Please refer to README. license: PublicDomain