packages feed

feed 1.3.2.0 → 1.3.2.1

raw patch · 4 files changed

+33/−23 lines, 4 filesdep ~basedep ~base-compatdep ~bytestringPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, base-compat, bytestring, text, time, xml-conduit

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+#### 1.3.2.1+* text 2.0 support, thanks to Alexander Batischev.+* Moved the repository to https://github.com/haskell-party/+ ### 1.3.2.0 * Expose RSS/Atom item content through queries by using `getItemContent`. 
README.lhs view
@@ -1,8 +1,9 @@ # Feed  [![feed](https://img.shields.io/hackage/v/feed.svg)](http://hackage.haskell.org/package/feed)-[![Build Status](https://travis-ci.org/bergmark/feed.svg?branch=master)](https://travis-ci.org/bergmark/feed)+![Build Status](https://github.com/haskell-party/feed/actions/workflows/haskell-ci.yml/badge.svg) + ## Goal  Interfacing with *RSS* (v 0.9x, 2.x, 1.0) + *Atom* feeds.@@ -194,7 +195,7 @@ -- </feed> ``` -See [here](https://github.com/bergmark/feed/blob/master/tests/Example/CreateAtom.hs) for this content as an uninterrupted running example.+See [here](https://github.com/haskell-party/feed/blob/master/tests/Example/CreateAtom.hs) for this content as an uninterrupted running example.  ```haskell -- Dummy main needed to compile this file with markdown-unlit
README.md view
@@ -1,8 +1,9 @@ # Feed  [![feed](https://img.shields.io/hackage/v/feed.svg)](http://hackage.haskell.org/package/feed)-[![Build Status](https://travis-ci.org/bergmark/feed.svg?branch=master)](https://travis-ci.org/bergmark/feed)+![Build Status](https://github.com/haskell-party/feed/actions/workflows/haskell-ci.yml/badge.svg) + ## Goal  Interfacing with *RSS* (v 0.9x, 2.x, 1.0) + *Atom* feeds.@@ -194,7 +195,7 @@ -- </feed> ``` -See [here](https://github.com/bergmark/feed/blob/master/tests/Example/CreateAtom.hs) for this content as an uninterrupted running example.+See [here](https://github.com/haskell-party/feed/blob/master/tests/Example/CreateAtom.hs) for this content as an uninterrupted running example.  ```haskell -- Dummy main needed to compile this file with markdown-unlit
feed.cabal view
@@ -1,5 +1,5 @@ name:                feed-version:             1.3.2.0+version:             1.3.2.1 license:             BSD3 license-file:        LICENSE category:            Text@@ -13,14 +13,14 @@                      of feeds in Haskell.                      .                      See here for an example of how to create an Atom feed:-                     <https://github.com/bergmark/feed/blob/master/tests/Example/CreateAtom.hs>+                     <https://github.com/haskell-party/feed/blob/master/tests/Example/CreateAtom.hs>                      .                      For basic reading and editing of feeds, consult                      the documentation of the Text.Feed.* hierarchy. author:              Sigbjorn Finne <sof@forkIO.com> maintainer:          Adam Bergmark <adam@bergmark.nl>-homepage:            https://github.com/bergmark/feed-bug-reports:         https://github.com/bergmark/feed/issues+homepage:            https://github.com/haskell-party/feed+bug-reports:         https://github.com/haskell-party/feed/issues cabal-version:       2.0 build-type:          Simple tested-with:@@ -31,8 +31,10 @@   , GHC == 8.2.2   , GHC == 8.4.4   , GHC == 8.6.5-  , GHC == 8.8.1-  , GHC == 8.10.1+  , GHC == 8.8.4+  , GHC == 8.10.7+  , GHC == 9.0.1+  , GHC == 9.2.1 data-files:   tests/files/*.xml extra-source-files:@@ -41,7 +43,7 @@  source-repository head   type:              git-  location:          https://github.com/bergmark/feed.git+  location:          https://github.com/haskell-party/feed.git  library   ghc-options:       -Wall@@ -77,14 +79,14 @@     Data.Text.Util     Data.XML.Compat   build-depends:-      base >= 4 && < 4.15-    , base-compat >= 0.9 && < 0.12-    , bytestring >= 0.9 && < 0.11+      base >= 4 && < 4.17+    , base-compat >= 0.9 && < 0.13+    , bytestring >= 0.9 && < 0.12     , old-locale == 1.0.*     , old-time >= 1 && < 1.2     , safe == 0.3.*-    , text < 1.3-    , time < 1.10+    , text < 1.3 || ==2.0.*+    , time < 1.12     , time-locale-compat == 0.1.*     , utf8-string < 1.1     , xml-types >= 0.3.6 && < 0.4@@ -115,16 +117,16 @@     Text.RSS.Tests     Text.RSS.Utils   build-depends:-      base >= 4.6 && < 4.15-    , base-compat >= 0.9 && < 0.12+      base >= 4.6 && < 4.17+    , base-compat >= 0.9 && < 0.13     , HUnit >= 1.2 && < 1.7     , feed     , old-time >= 1 && < 1.2     , syb     , test-framework == 0.8.*     , test-framework-hunit == 0.3.*-    , text < 1.3-    , time < 1.10+    , text < 1.3 || ==2.0.*+    , time < 1.12     , xml-types >= 0.3.6 && < 0.4     , xml-conduit >= 1.3 && < 1.10 @@ -137,8 +139,8 @@     OverloadedStrings   type:              exitcode-stdio-1.0   build-depends:-      base >= 4.6 && < 4.15-    , base-compat >= 0.9 && < 0.12+      base >= 4.6+    , base-compat >= 0.9 && < 0.13     , text     , feed     , xml-conduit@@ -151,8 +153,10 @@   main-is: doctest-driver.hs   type: exitcode-stdio-1.0   default-language: Haskell2010+  if impl(ghc < 8)+     buildable: False   build-depends:-      base >= 4 && < 4.15+      base >= 4.6     , doctest     , doctest-driver-gen     , feed