playlists-http 0.2.1.0 → 0.2.1.1
raw patch · 3 files changed
+8/−23 lines, 3 filesdep ~http-clientPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: http-client
API changes (from Hackage documentation)
- Text.Playlist.HTTP.Full: download :: forall m. (MonadIO m) => Environment -> Text -> m (Either Error Playlist)
+ Text.Playlist.HTTP.Full: download :: forall m. MonadIO m => Environment -> Text -> m (Either Error Playlist)
Files
- LICENSE +1/−1
- README.md +1/−4
- playlists-http.cabal +6/−18
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2016,2018 Peter Jones <pjones@devalot.com>+Copyright (c) 2016-2019 Peter Jones <pjones@devalot.com> All rights reserved.
README.md view
@@ -1,4 +1,4 @@-playlists-http [![Travis][travis-shield]][travis]+playlists-http ============== Download and parse playlists over HTTP.@@ -15,6 +15,3 @@ There is also an `examples/example.hs` that demonstrates how to use the `download` function which is found in `Text.Playlist.HTTP.Full`.--[travis]: https://travis-ci.org/pjones/playlists-http-[travis-shield]: https://travis-ci.org/pjones/playlists-http.svg?branch=master
playlists-http.cabal view
@@ -1,16 +1,16 @@ name: playlists-http-version: 0.2.1.0+version: 0.2.1.1 synopsis: Library to glue together playlists and http-client-homepage: https://github.com/pjones/playlists-http+homepage: https://code.devalot.com/open/playlists-http+bug-reports: https://code.devalot.com/open/playlists-http/issues license: BSD3 license-file: LICENSE author: Peter Jones <pjones@devalot.com> maintainer: Peter Jones <pjones@devalot.com>-copyright: Copyright (c) 2016,2018 Peter Jones+copyright: Copyright (c) 2016-2019 Peter Jones category: Text build-type: Simple cabal-version: 1.18-tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1 description: Simple library for resolving playlists using http-client. --------------------------------------------------------------------------------@@ -22,13 +22,7 @@ -------------------------------------------------------------------------------- source-repository head type: git- location: https://github.com/pjones/playlists-http.git-----------------------------------------------------------------------------------flag maintainer- description: Enable settings for the package maintainer.- default: False- manual: True+ location: https://code.devalot.com/open/playlists-http.git -------------------------------------------------------------------------------- flag build-examples@@ -46,14 +40,11 @@ hs-source-dirs: src ghc-options: -Wall - if flag(maintainer)- ghc-options: -Werror- build-depends: attoparsec >= 0.10 && < 1.0 , base >= 4.6 && < 5 , bytestring >= 0.10 && < 1.0 , exceptions >= 0.8 && < 0.11- , http-client >= 0.4 && < 0.6+ , http-client >= 0.4 && < 0.7 , mtl >= 2.2 && < 2.3 , playlists >= 0.5 && < 1.0 , text >= 0.11 && < 1.3@@ -65,9 +56,6 @@ hs-source-dirs: examples main-is: example.hs ghc-options: -Wall-- if flag(maintainer)- ghc-options: -Werror if !flag(build-examples) buildable: False