Skip to content

Commit 07c6d4b

Browse files
committed
Release 1.0.3
Changes since 1.0.2: Instrument parenthesized expressions, channel receive expressions, composite literals, type switch statements. Add newline after printing a line to stderr.
1 parent 640392a commit 07c6d4b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

main.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"strings"
1414
)
1515

16-
const version = "1.0.3-snapshot"
16+
const version = "1.0.3"
1717

1818
var exit = os.Exit
1919

@@ -247,17 +247,17 @@ func (g *gobco) prepareTmp() {
247247
}
248248

249249
func (g *gobco) instrument() {
250-
in :=instrumenter{
251-
g.coverTest,
252-
g.immediately,
253-
g.listAll,
254-
nil,
255-
nil,
256-
false,
257-
map[ast.Node]bool{},
258-
"",
259-
0,
260-
}
250+
in := instrumenter{
251+
g.coverTest,
252+
g.immediately,
253+
g.listAll,
254+
nil,
255+
nil,
256+
false,
257+
map[ast.Node]bool{},
258+
"",
259+
0,
260+
}
261261

262262
for _, arg := range g.args {
263263
instrDst := g.file(arg.instrDir)

0 commit comments

Comments
 (0)