Skip to content

Commit f7547c9

Browse files
committedApr 5, 2020
Stable version v0.7.1
This release is dedicated to the board game Pandemic, for teaching us relevant survival skills like how to stay inside and play board games.
1 parent bd717c9 commit f7547c9

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed
 

‎.multi_arch_docker

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
# This script builds and deploys multi-architecture docker images from the
33
# binaries previously built and deployed to GCS by the Travis pipeline.
44

5+
if [[ "$TRAVIS_SECURE_ENV_VARS" != "true" ]]
6+
then
7+
echo >&2 "Missing TRAVIS_SECURE_ENV_VARS. Skipping Docker builds."
8+
exit 0
9+
fi
10+
511
function multi_arch_docker::install_docker_buildx() {
612
# Install up-to-date version of docker, with buildx support.
713
local -r docker_apt_repo='https://download.docker.com/linux/ubuntu'

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- stage: Deploy docker image
2020
# Deploy only for pushes to master branch, not other branches, not PRs.
21-
if: branch = master AND type = push
21+
if: type = push
Has a conversation. Original line has a conversation.
2222
script:
2323
- source ./.multi_arch_docker
2424
- set -ex; multi_arch_docker::main; set +x

‎CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v0.7.1 - soon
1+
## v0.7.1 - 2020-04-04
22
### Fixed
33
- `-f diff` no longer claims that it found more issues when it didn't
44
- Known empty variables now correctly trigger SC2086
@@ -7,6 +7,7 @@
77
called with `builtin`
88

99
### Added
10+
- SC1136: Warn about unexpected characters after ]/]]
1011
- SC2254: Suggest quoting expansions in case statements
1112
- SC2255: Suggest using `$((..))` in `[ 2*3 -eq 6 ]`
1213
- SC2256: Warn about translated strings that are known variables
@@ -17,6 +18,7 @@
1718
- SC2230: 'command -v' suggestion is now off by default (-i deprecate-which)
1819
- SC1081: Keywords are now correctly parsed case sensitively, with a warning
1920

21+
2022
## v0.7.0 - 2019-07-28
2123
### Added
2224
- Precompiled binaries for macOS and Linux aarch64

‎ShellCheck.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: ShellCheck
2-
Version: 0.7.0
2+
Version: 0.7.1
33
Synopsis: Shell script analysis tool
44
License: GPL-3
55
License-file: LICENSE

‎shellcheck.1.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ not warn at all, as `ksh` supports decimals in arithmetic contexts.
107107

108108
**-x**,\ **--external-sources**
109109

110-
: Follow 'source' statements even when the file is not specified as input.
110+
: Follow `source` statements even when the file is not specified as input.
111111
By default, `shellcheck` will only follow files specified on the command
112112
line (plus `/dev/null`). This option allows following any file the script
113113
may `source`.
@@ -301,7 +301,7 @@ invocation.
301301

302302
# RETURN VALUES
303303

304-
ShellCheck uses the follow exit codes:
304+
ShellCheck uses the following exit codes:
305305

306306
+ 0: All files successfully scanned with no issues.
307307
+ 1: All files successfully scanned with some issues.

0 commit comments

Comments
 (0)
Please sign in to comment.