packages feed

sensu-run 0.6.1 → 0.6.1.1

raw patch · 2 files changed

+17/−8 lines, 2 filesdep ~http-clientdep ~network

Dependency ranges changed: http-client, network

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Revision history for sensu-run +## 0.6.1.1 -- 2019-05-28++* Relax upper version bounds for http-client and network+* Specify cabal-version: 2.2+* Update .travis.yml with newer GHCs+ ## 0.6.1 -- 2018-12-13  * Fix the broken --timeout option
sensu-run.cabal view
@@ -1,14 +1,15 @@+cabal-version: 2.2 name: sensu-run-version: 0.6.1+version: 0.6.1.1 synopsis: A tool to send command execution results to Sensu description:   @sensu-run@ is a command line tool to send command execution results to Sensu   monitoring server.-license: BSD3+license: BSD-3-Clause license-file: LICENSE author: Mitsutoshi Aoe maintainer: me@maoe.name-copyright: Copyright (C) 2016-2018 Mitsutoshi Aoe+copyright: Copyright (C) 2016-2019 Mitsutoshi Aoe homepage: https://github.com/maoe/sensu-run#readme bug-reports: https://github.com/maoe/sensu-run/issues category: System@@ -16,28 +17,28 @@ extra-source-files:   CHANGELOG.md   README.md-cabal-version: >= 1.10 tested-with:   GHC == 8.0.2   GHC == 8.2.2   GHC == 8.4.4-  GHC == 8.6.3+  GHC == 8.6.5+  GHC == 8.8.1  executable sensu-run   main-is: sensu-run.hs   build-depends:-      aeson >= 0.11 && < 1.5+    , aeson >= 0.11 && < 1.5     , async < 2.3     , base >= 4.9 && < 4.13     , bytestring >= 0.10 && < 0.11     , directory < 1.4     , filelock < 0.2     , filepath >= 1.4.1 && < 1.5-    , http-client >= 0.5.6 && < 0.6+    , http-client >= 0.5.6 && < 0.7     , http-client-tls < 0.4     , http-types >= 0.9.1 && < 0.13     , lens >= 4.15 && < 4.18-    , network >= 2.2.3 && < 2.9+    , network >= 2.2.3 && < 3.2     , optparse-applicative >= 0.12 && < 0.15     , process >= 1.4 && < 1.7     , temporary >= 1.1 && < 1.4@@ -49,6 +50,8 @@   other-modules:     Paths_sensu_run     System.Process.Kill+  autogen-modules:+    Paths_sensu_run   if os(windows)     cpp-options: -DWINDOWS   else