From 01725bdd30658db1fe1b9e02173c3060061fe86f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 22 Feb 2020 20:33:12 +0100 Subject: [PATCH] all: release 3.0.2 --- CHANGELOG.md | 10 ++++++++++ cmd/shfmt/main.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86090629a..b77149091 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [3.0.2] - 2020-02-22 + +- **syntax** + - Don't indent after escaped newlines in heredocs + - Don't parse `*[i]=x` as a valid assignment +- **interp** + - Prevent subshells from defining funcs in the parent shells +- **expand** + - Parameters to `Fields` no longer get braces expanded in-place + ## [3.0.1] - 2020-01-11 - **cmd/shfmt** diff --git a/cmd/shfmt/main.go b/cmd/shfmt/main.go index c7eda5009..3c112246d 100644 --- a/cmd/shfmt/main.go +++ b/cmd/shfmt/main.go @@ -56,7 +56,7 @@ var ( out io.Writer = os.Stdout color bool - version = "v3.0.1" + version = "v3.0.2" ) func main() {