Skip to content

Commit 85fa214

Browse files
committed
Merge branch 'release/v0.7.0.3'
2 parents af3deb1 + 9684298 commit 85fa214

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.travis.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# For more information, see https://github.com/haskell-CI/haskell-ci
66
#
7-
# version: 0.3.20190521
7+
# version: 0.3.20190624
88
#
99
language: c
1010
dist: xenial
@@ -87,6 +87,7 @@ install:
8787
- |
8888
echo "verbose: normal +nowrap +markoutput" >> $CABALHOME/config
8989
echo "remote-build-reporting: anonymous" >> $CABALHOME/config
90+
echo "write-ghc-environment-files: always" >> $CABALHOME/config
9091
echo "remote-repo-cache: $CABALHOME/packages" >> $CABALHOME/config
9192
echo "logs-dir: $CABALHOME/logs" >> $CABALHOME/config
9293
echo "world-file: $CABALHOME/world" >> $CABALHOME/config
@@ -102,7 +103,6 @@ install:
102103
- |
103104
if $GHCHEAD; then
104105
echo "allow-newer: $($HCPKG list --simple-output | sed -E 's/([a-zA-Z-]+)-[0-9.]+/*:\1/g')" >> $CABALHOME/config
105-
106106
echo "repository head.hackage" >> $CABALHOME/config
107107
echo " url: http://head.hackage.haskell.org/" >> $CABALHOME/config
108108
echo " secure: True" >> $CABALHOME/config
@@ -120,7 +120,6 @@ install:
120120
- |
121121
echo 'packages: "."' >> cabal.project
122122
- |
123-
echo "write-ghc-environment-files: always" >> cabal.project
124123
- "for pkg in $($HCPKG list --simple-output); do echo $pkg | sed 's/-[^-]*$//' | (grep -vE -- '^(sensu-run)$' || true) | sed 's/^/constraints: /' | sed 's/$/ installed/' >> cabal.project.local; done"
125124
- cat cabal.project || true
126125
- cat cabal.project.local || true
@@ -144,7 +143,6 @@ script:
144143
- |
145144
echo 'packages: "sensu-run-*/*.cabal"' >> cabal.project
146145
- |
147-
echo "write-ghc-environment-files: always" >> cabal.project
148146
- "for pkg in $($HCPKG list --simple-output); do echo $pkg | sed 's/-[^-]*$//' | (grep -vE -- '^(sensu-run)$' || true) | sed 's/^/constraints: /' | sed 's/$/ installed/' >> cabal.project.local; done"
149147
- cat cabal.project || true
150148
- cat cabal.project.local || true

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Revision history for sensu-run
22

3+
## 0.7.0.3 -- 2019-08-20
4+
5+
* Relax upper version bound for optparse-applicative
6+
37
## 0.7.0.2 -- 2019-06-18
48

59
* Fix redundant newline at the beginning of the cabal file

sensu-run.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: sensu-run
3-
version: 0.7.0.2
3+
version: 0.7.0.3
44
synopsis: A tool to send command execution results to Sensu
55
description:
66
@sensu-run@ is a command line tool to send command execution results to Sensu
@@ -37,7 +37,7 @@ executable sensu-run
3737
, http-types >= 0.9.1 && < 0.13
3838
, lens >= 4.15 && < 4.18
3939
, network >= 2.2.3 && < 3.2
40-
, optparse-applicative >= 0.12 && < 0.15
40+
, optparse-applicative >= 0.12 && < 0.16
4141
, process >= 1.6.3.0 && < 1.7
4242
, temporary >= 1.1 && < 1.4
4343
, text >= 1.2.2 && < 1.3

0 commit comments

Comments
 (0)