Skip to content

Commit 56f2ca7

Browse files
committed
all: release 3.0.1
1 parent feeb22f commit 56f2ca7

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [3.0.1] - 2020-01-11
4+
5+
- **cmd/shfmt**
6+
- Fix an edge case where walking directories could panic
7+
- **syntax**
8+
- Only do a trailing read in `Parser.Stmts` if we have open heredocs
9+
- Ensure comments are never folded into heredocs
10+
- Properly tokenize `)` after a `=~` test regexp
11+
- Stop parsing a comment at an escaped newline
12+
- **expand**
13+
- `"$@"` now expands to zero fields when there are zero parameters
14+
315
## [3.0.0] - 2019-12-16
416

517
This is the first stable release as a proper module, now under

cmd/shfmt/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var (
5656
out io.Writer = os.Stdout
5757
color bool
5858

59-
version = "v3.0.0"
59+
version = "v3.0.1"
6060
)
6161

6262
func main() {

0 commit comments

Comments
 (0)