Skip to content

Commit ba2512e

Browse files
committed
Release v0.18.0
1 parent 7c21ae1 commit ba2512e

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- main
77
pull_request:
88
types: [opened, synchronize, reopened]
9+
workflow_dispatch:
910

1011
jobs:
1112
build:
@@ -20,7 +21,7 @@ jobs:
2021

2122
steps:
2223
- name: Checkout code
23-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2425
- name: Set up Go
2526
uses: actions/setup-go@v5
2627
with:

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- uses: actions/setup-go@v5
2121
with:
2222
go-version: 'stable'

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
goreleaser:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- run: git fetch --force --tags

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [v0.18.0] - 2025-08-24
11+
12+
- Wrap panic messages at the terminal width (#142)
13+
- Do not include packages with no coverage in the output (#144)
14+
1015
## [v0.17.0]
1116

1217
- Deprecate github.com/mfridman/buildversion, and use std lib `debug.ReadBuildInfo()` instead. In
@@ -88,7 +93,8 @@ Summary from [v0.13.0](https://github.com/mfridman/tparse/releases/tag/v0.13.0)
8893
- Add [GoReleaser](https://goreleaser.com/) to automate the release process. Pre-built binaries are
8994
available for each release, currently Linux and macOS. If there is demand, can also add Windows.
9095

91-
[Unreleased]: https://github.com/mfridman/tparse/compare/v0.17.0...HEAD
96+
[Unreleased]: https://github.com/mfridman/tparse/compare/v0.18.0...HEAD
97+
[v0.18.0]: https://github.com/mfridman/tparse/compare/v0.17.0...v0.18.0
9298
[v0.17.0]: https://github.com/mfridman/tparse/compare/v0.16.0...v0.17.0
9399
[v0.16.0]: https://github.com/mfridman/tparse/compare/v0.15.0...v0.16.0
94100
[v0.15.0]: https://github.com/mfridman/tparse/compare/v0.14.0...v0.15.0

0 commit comments

Comments
 (0)