Skip to content

Commit c1754a1

Browse files
committed
Release v0.17.0
1 parent c82ddbf commit c1754a1

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Makefile

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
ROOT := github.com/mfridman/tparse
2+
GOPATH ?= $(shell go env GOPATH)
3+
TOOLS_BIN = $(GOPATH)/bin
24

35
.PHONY: vet
46
vet:
@@ -10,7 +12,23 @@ lint: tools
1012

1113
.PHONY: tools
1214
tools:
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
1634
release:

parse/event.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)