discord-hs 0.2.1 → 0.2.2
raw patch · 2 files changed
+4/−6 lines, 2 filesdep ~aesondep ~timedep ~vectorPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson, time, vector
API changes (from Hackage documentation)
Files
- discord-hs.cabal +4/−4
- src/Network/Discord/Framework.hs +0/−2
discord-hs.cabal view
@@ -1,5 +1,5 @@ name: discord-hs-version: 0.2.1+version: 0.2.2 synopsis: An API wrapper for Discord in Haskell description: Provides an api wrapper and framework for writing bots against the Discord <https://discordapp.com/> API.@@ -40,7 +40,7 @@ , Network.Discord.Rest.HTTP -- other-extensions: build-depends: base==4.*- , aeson==1.0.*+ , aeson>=1.0 && <1.2 , bytestring==0.10.* , case-insensitive==1.2.* , containers==0.5.*@@ -54,11 +54,11 @@ , stm-conduit==3.0.* , stm==2.4.* , text==1.2.*- , time==1.6.*+ , time>=1.6 && <1.9 , transformers==0.5.* , unordered-containers==0.2.* , url==2.1.*- , vector==0.11.*+ , vector>=0.10 && <0.13 , websockets==0.10.* , req==0.2.* , wuss==1.1.*
src/Network/Discord/Framework.hs view
@@ -1,5 +1,3 @@-{-# LANGUAGE TypeFamilies, ExistentialQuantification, RankNTypes, MultiParamTypeClasses #-}-{-# LANGUAGE ScopedTypeVariables #-} -- | Provides a convenience framework for writing Discord bots without dealing with Pipes module Network.Discord.Framework where import Control.Concurrent