funbot-client 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+34/−2 lines, 2 filesdep +networkdep ~HTTPPVP ok
version bump matches the API change (PVP)
Dependencies added: network
Dependency ranges changed: HTTP
API changes (from Hackage documentation)
Files
- NEWS +24/−0
- funbot-client.cabal +10/−2
NEWS view
@@ -3,6 +3,30 @@ +funbot-client 0.1.0.1 -- 2015-09-19+===================================++General, build and documentation changes:++* (None)++New APIs, features and enhancements:++* (None)++Bug fixes:++* (None)++Dependency changes:++* Allow older dependency version to be chosen by a flag, for wider+ compatibility with other packages+++++ funbot-client 0.1.0.0 -- 2015-09-19 ===================================
funbot-client.cabal view
@@ -1,5 +1,5 @@ name: funbot-client-version: 0.1.0.0+version: 0.1.0.1 synopsis: Report events to FunBot over a JSON/HTTP API. description: This is a library for reporting events to a running instance of@@ -23,6 +23,10 @@ type: git location: https://notabug.org/fr33domlover/funbot-client.git +flag old+ description: Use network for Network.URI, and a matching HTTP package version+ default: False+ library exposed-modules: FunBot.Client -- other-modules: @@ -32,8 +36,12 @@ , base >=4.7 && <5 , bytestring , funbot-ext-events+ if flag(old)+ build-depends: network <2.6+ , HTTP >=4000.2 && <=4000.2.17+ else+ build-depends: network-uri >=2.6 , HTTP >=4000.2- , network-uri hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall