packages feed

twitchapi 0.0.4 → 0.0.5

raw patch · 3 files changed

+26/−22 lines, 3 filesdep ~aesondep ~basedep ~bytestringPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: aeson, base, bytestring, hoauth2, text, time

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for twitchapi +## 0.0.5 -- 2024-05-04++* Bumped version dependencies+ ## 0.0.4 -- 2022-11-14  * Restructured PubSub API to remove DuplicateRecordFields dependency
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2021 Tina Wuest+Copyright (c) 2021-2024 Tina Wuest  All rights reserved. 
twitchapi.cabal view
@@ -1,5 +1,5 @@ name:                twitchapi-version:             0.0.4+version:             0.0.5 synopsis:            Client access to Twitch.tv API endpoints description:         Twitch.tv API client supporting Helix and PubSub homepage:            https://github.com/wuest/haskell-twitchapi@@ -8,7 +8,7 @@ license-file:        LICENSE author:              Tina Wuest maintainer:          tina@wuest.me-copyright:           2021-2022 Tina Wuest+copyright:           2021-2024 Tina Wuest category:            Web build-type:          Simple extra-source-files:  CHANGELOG.md@@ -19,7 +19,7 @@   location: https://github.com/wuest/haskell-twitchapi.git  library-  ghc-options:      -Wall -fwarn-implicit-prelude -fwarn-monomorphism-restriction -O2 -static+  ghc-options:      -Wall -fwarn-implicit-prelude -fwarn-monomorphism-restriction -static   default-language: Haskell2010   default-extensions:   LambdaCase                       , OverloadedStrings@@ -31,35 +31,35 @@                     , Web.TwitchAPI.Helix.Users                     , Web.TwitchAPI.PubSub -  build-depends:      base            >= 4.11 && < 4.18-                    , aeson           >= 2.1  && < 2.2-                    , bytestring      >= 0.10 && < 0.12-                    , hoauth2         >= 1.16 && < 2.7+  build-depends:      base            >= 4.11 && < 4.20+                    , aeson           >= 2.1  && < 2.3+                    , bytestring      >= 0.10 && < 0.13+                    , hoauth2         >= 1.16 && < 2.14                     , http-client     >= 0.5  && < 0.8-                    , text            >= 1.2  && < 2.1-                    , time            >= 1.6  && < 1.14+                    , text            >= 1.2  && < 2.2+                    , time            >= 1.6  && < 1.15                     , timerep         >= 2.0  && < 2.2                     , uri-bytestring  >= 0.3  && < 0.4  test-suite pubsub-  ghc-options:      -threaded -rtsopts -with-rtsopts=-N -O2+  ghc-options:      -threaded -rtsopts -with-rtsopts=-N   default-language: Haskell2010   type:             exitcode-stdio-1.0   hs-source-dirs:     test                     , src   main-is:          PubSub.hs   other-modules:      Web.TwitchAPI.PubSub-  build-depends:      base            >= 4.11 && < 4.18+  build-depends:      base            >= 4.11 && < 4.20                     , QuickCheck      >= 2.8                     , hspec           >= 2.7-                    , aeson           >= 2.1  && < 2.2-                    , bytestring      >= 0.10 && < 0.12-                    , text            >= 1.2  && < 2.1-                    , time            >= 1.6  && < 1.14+                    , aeson           >= 2.1  && < 2.3+                    , bytestring      >= 0.10 && < 0.13+                    , text            >= 1.2  && < 2.2+                    , time            >= 1.6  && < 1.15                     , timerep         >= 2.0  && < 2.2  test-suite helix-  ghc-options:      -threaded -rtsopts -with-rtsopts=-N -O2+  ghc-options:      -threaded -rtsopts -with-rtsopts=-N   default-language: Haskell2010   type:             exitcode-stdio-1.0   hs-source-dirs:     test@@ -68,12 +68,12 @@   other-modules:      Web.TwitchAPI.Helix.Request                     , Web.TwitchAPI.Helix.Users                     , Helix.Users-  build-depends:      base            >= 4.11 && < 4.18+  build-depends:      base            >= 4.11 && < 4.20                     , QuickCheck      >= 2.8                     , hspec           >= 2.7-                    , aeson           >= 2.1  && < 2.2-                    , bytestring      >= 0.10 && < 0.12-                    , text            >= 1.2  && < 2.1-                    , time            >= 1.6  && < 1.14+                    , aeson           >= 2.1  && < 2.3+                    , bytestring      >= 0.10 && < 0.13+                    , text            >= 1.2  && < 2.2+                    , time            >= 1.6  && < 1.15                     , timerep         >= 2.0  && < 2.2                     , http-client     >= 0.5  && < 0.8