packages feed

json-feed 1.0.6 → 1.0.7

raw patch · 2 files changed

+14/−6 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

json-feed.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 340575326e3291cffb5ae4909726ffeaceabd35d5542fe9fead22d9968a5eae2+-- hash: a65a97c611d4b462c2c5873961f9aeb01f777d5f10977927ff58e2779340c52c  name:           json-feed-version:        1.0.6+version:        1.0.7 synopsis:       JSON Feed description:    This is an implementation of the JSON Feed spec in Haskell. The spec is available at <https://jsonfeed.org>. JSON Feed is similar to the Atom and RSS feed formats, but it is serialized as JSON rather than XML. category:       Web@@ -48,13 +48,15 @@   ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe   build-depends:       aeson >=0.11.2 && <0.12 || >=1.0.2 && <1.5-    , base >=4.9.0 && <4.13+    , base >=4.9.0 && <4.14     , bytestring >=0.10.8 && <0.11     , mime-types >=0.1.0 && <0.2     , network-uri >=2.6.1 && <2.7     , tagsoup >=0.14 && <0.15     , text >=1.2.2 && <1.3     , time >=1.6.0 && <1.10+  if impl(ghc >= 8.8.1)+    ghc-options: -Wno-missing-deriving-strategies   default-language: Haskell2010  test-suite test@@ -67,7 +69,7 @@   ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe -rtsopts -threaded   build-depends:       aeson >=0.11.2 && <0.12 || >=1.0.2 && <1.5-    , base >=4.9.0 && <4.13+    , base >=4.9.0 && <4.14     , bytestring >=0.10.8 && <0.11     , filepath >=1.4.1 && <1.5     , hspec >=2.2.3 && <2.8@@ -77,4 +79,6 @@     , tagsoup >=0.14 && <0.15     , text >=1.2.2 && <1.3     , time >=1.6.0 && <1.10+  if impl(ghc >= 8.8.1)+    ghc-options: -Wno-missing-deriving-strategies   default-language: Haskell2010
package.yaml view
@@ -1,5 +1,5 @@ name: json-feed-version: 1.0.6+version: 1.0.7  category: Web description: >@@ -20,7 +20,7 @@  dependencies:   aeson: '>= 0.11.2 && < 0.12 || >= 1.0.2 && < 1.5'-  base: '>= 4.9.0 && < 4.13'+  base: '>= 4.9.0 && < 4.14'   bytestring: '>= 0.10.8 && < 0.11'   mime-types: '>= 0.1.0 && < 0.2'   network-uri: '>= 2.6.1 && < 2.7'@@ -32,6 +32,10 @@   - -Wno-implicit-prelude   - -Wno-safe   - -Wno-unsafe++when:+  - condition: impl(ghc >= 8.8.1)+    ghc-options: -Wno-missing-deriving-strategies  library:   source-dirs: library