themoviedb 1.2.0.0 → 1.2.0.1
raw patch · 4 files changed
+10/−21 lines, 4 filesdep ~tastydep ~timePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: tasty, time
API changes (from Hackage documentation)
Files
- CHANGES.md +5/−1
- TODO.org +0/−13
- example/Main.hs +1/−2
- themoviedb.cabal +4/−5
CHANGES.md view
@@ -1,6 +1,6 @@ # Version History -## 1.2.0.0 (July 28, 2020)+## 1.2 (July 28, 2020) - New `Settings` type with the ability to set a preferred ISO 639-1 language code. Functions that used to take a `Key` now take a@@ -11,6 +11,10 @@ - Reformatted all code with Ormolu and refactored some bits to remove unnecessary dependencies.++ - Minor updates for dependency bounds:++ - 1.2.0.1 (October 27, 2020) ## 1.1.5.2 (April 15, 2019)
− TODO.org
@@ -1,13 +0,0 @@-#+title: TheMovieDB To-do List--* Milestone: Release 1.0.0.0-** DONE Switch to HTTPS/SSL/TLS (via http-conduit)- CLOSED: [2015-03-20 Fri 18:02]- - This requires using something other than Network.HTTP.-** DONE Remove key utility functions- CLOSED: [2015-03-20 Fri 18:02]-** DONE Ensure parsing errors are handled properly- CLOSED: [2015-03-20 Fri 18:02]-** TODO Prune unneeded dependencies in the cabal file-** TODO Clean up documentation-** TODO Clean up tests
example/Main.hs view
@@ -14,8 +14,7 @@ import qualified Data.Text as T import Data.Time (defaultTimeLocale, formatTime) import Network.API.TheMovieDB-import System.Environment (getArgs)-import System.Environment (lookupEnv)+import System.Environment (getArgs, lookupEnv) import Text.Printf (printf) -- | Simple banner style printing of a 'Movie'.
themoviedb.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: themoviedb-version: 1.2.0.0+version: 1.2.0.1 synopsis: Haskell API bindings for http://themoviedb.org homepage: https://github.com/pjones/themoviedb bug-reports: https://github.com/pjones/themoviedb/issues@@ -12,7 +12,7 @@ category: Network, API stability: stable build-type: Simple-tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.1+tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 description: This library provides functions for retrieving metadata from the <http://TheMovieDB.org> API. Documentation@@ -22,7 +22,6 @@ extra-source-files: CHANGES.md README.md- TODO.org test/*.json --------------------------------------------------------------------------------@@ -72,7 +71,7 @@ , mtl >=2.1 && <2.3 , relude >=0.6 && <0.8 , text >=0.11 && <1.3- , time >=1.5 && <1.11+ , time >=1.5 && <1.12 mixins: base hiding (Prelude),@@ -117,6 +116,6 @@ TVTest build-depends:- , tasty >=0.10 && <1.3+ , tasty >=0.10 && <1.5 , tasty-hunit >=0.9 && <0.11 , themoviedb