File tree Expand file tree Collapse file tree 3 files changed +24
-3
lines changed
Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77
88## [ Unreleased]
99
10+ ## [ v0.17.0]
11+
1012- Deprecate github.com/mfridman/buildversion, and use std lib ` debug.ReadBuildInfo() ` instead. In
1113 go1.24 this is handled automatically, from the [ release notes] ( https://go.dev/doc/go1.24 ) :
1214
@@ -86,7 +88,8 @@ Summary from [v0.13.0](https://github.com/mfridman/tparse/releases/tag/v0.13.0)
8688- Add [ GoReleaser] ( https://goreleaser.com/ ) to automate the release process. Pre-built binaries are
8789 available for each release, currently Linux and macOS. If there is demand, can also add Windows.
8890
89- [ Unreleased ] : https://github.com/mfridman/tparse/compare/v0.16.0...HEAD
91+ [ Unreleased ] : https://github.com/mfridman/tparse/compare/v0.17.0...HEAD
92+ [ v0.17.0 ] : https://github.com/mfridman/tparse/compare/v0.16.0...v0.17.0
9093[ v0.16.0 ] : https://github.com/mfridman/tparse/compare/v0.15.0...v0.16.0
9194[ v0.15.0 ] : https://github.com/mfridman/tparse/compare/v0.14.0...v0.15.0
9295[ v0.14.0 ] : https://github.com/mfridman/tparse/compare/v0.13.3...v0.14.0
Original file line number Diff line number Diff line change 11ROOT := github.com/mfridman/tparse
2+ GOPATH ?= $(shell go env GOPATH)
3+ TOOLS_BIN = $(GOPATH ) /bin
24
35.PHONY : vet
46vet :
@@ -10,7 +12,23 @@ lint: tools
1012
1113.PHONY : tools
1214tools :
13- @which golangci-lint > /dev/null 2>&1 || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH) /bin
15+ @which golangci-lint > /dev/null 2>&1 || \
16+ (echo " Installing latest golangci-lint" && \
17+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
18+ sh -s -- -b " $( TOOLS_BIN) " )
19+
20+ .PHONY : tools-update
21+ tools-update :
22+ @echo " Updating golangci-lint to latest version"
23+ @rm -f " $( TOOLS_BIN) /golangci-lint"
24+ @curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
25+ sh -s -- -b " $( TOOLS_BIN) "
26+ @echo " golangci-lint updated successfully to latest version"
27+
28+ .PHONY : tools-version
29+ tools-version :
30+ @echo " Current tool versions:"
31+ @echo " golangci-lint: $$ (golangci-lint --version 2>/dev/null || echo 'not installed')"
1432
1533.PHONY : release
1634release :
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ type Event struct {
5555
5656 // BuildEvent specific fields.
5757 //
58- // TODO(mf): Unfortuantely the output has both BuildEvent and TestEvent interleaved in the
58+ // TODO(mf): Unfortunately the output has both BuildEvent and TestEvent interleaved in the
5959 // output so for now we just combine them. But in the future pre-v1 we'll want to improve this.
6060 //
6161 // type BuildEvent struct {
You can’t perform that action at this time.
0 commit comments