Skip to content

Commit

Permalink
Stable version v0.7.1
Browse files Browse the repository at this point in the history
This release is dedicated to the board game Pandemic, for teaching us
relevant survival skills like how to stay inside and play board games.
  • Loading branch information
koalaman committed Apr 5, 2020
1 parent bd717c9 commit f7547c9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .multi_arch_docker
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# This script builds and deploys multi-architecture docker images from the
# binaries previously built and deployed to GCS by the Travis pipeline.

if [[ "$TRAVIS_SECURE_ENV_VARS" != "true" ]]
then
echo >&2 "Missing TRAVIS_SECURE_ENV_VARS. Skipping Docker builds."
exit 0
fi

function multi_arch_docker::install_docker_buildx() {
# Install up-to-date version of docker, with buildx support.
local -r docker_apt_repo='https://download.docker.com/linux/ubuntu'
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- stage: Deploy docker image
# Deploy only for pushes to master branch, not other branches, not PRs.
if: branch = master AND type = push
if: type = push

This comment has been minimized.

Copy link
@ArturKlauser

ArturKlauser Apr 5, 2020

Contributor

Above comment is now out of sync with changed if condition.

script:
- source ./.multi_arch_docker
- set -ex; multi_arch_docker::main; set +x
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.7.1 - soon
## v0.7.1 - 2020-04-04
### Fixed
- `-f diff` no longer claims that it found more issues when it didn't
- Known empty variables now correctly trigger SC2086
Expand All @@ -7,6 +7,7 @@
called with `builtin`

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


## v0.7.0 - 2019-07-28
### Added
- Precompiled binaries for macOS and Linux aarch64
Expand Down
2 changes: 1 addition & 1 deletion ShellCheck.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: ShellCheck
Version: 0.7.0
Version: 0.7.1
Synopsis: Shell script analysis tool
License: GPL-3
License-file: LICENSE
Expand Down
4 changes: 2 additions & 2 deletions shellcheck.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ not warn at all, as `ksh` supports decimals in arithmetic contexts.

**-x**,\ **--external-sources**

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

# RETURN VALUES

ShellCheck uses the follow exit codes:
ShellCheck uses the following exit codes:

+ 0: All files successfully scanned with no issues.
+ 1: All files successfully scanned with some issues.
Expand Down

0 comments on commit f7547c9

Please sign in to comment.