Skip to content

Commit 382ac74

Browse files
authored
Release 0.19.0 (#290)
* Bump Go to 1.22
1 parent bc19f02 commit 382ac74

File tree

6 files changed

+28
-6
lines changed

6 files changed

+28
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: '1.21'
25+
go-version: '1.22'
2626

2727
- name: Build
2828
run: make ci

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.21'
22+
go-version: '1.22'
2323

2424
- run: make inst
2525

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,10 @@
2121
"go.lintTool": "golangci-lint",
2222
"go.lintFlags": [
2323
"--fast"
24-
]
24+
],
25+
"[go][go.mod]": {
26+
"editor.codeActionsOnSave": {
27+
"source.organizeImports": "explicit"
28+
}
29+
}
2530
}

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/golang-templates/seed/compare/v0.18.0...HEAD)
8+
## [Unreleased](https://github.com/golang-templates/seed/compare/v0.19.0...HEAD)
9+
10+
## [0.19.0](https://github.com/golang-templates/seed/releases/tag/v0.19.0)
11+
12+
### Added
13+
14+
- Add `sqlclosecheck` linter. ([#235](https://github.com/golang-templates/seed/pull/235))
15+
16+
### Changed
17+
18+
- Change license to CC0-1.0. ([#241](https://github.com/golang-templates/seed/pull/241))
19+
- Update Codecov instructions for v4. ([#289](https://github.com/golang-templates/seed/pull/289))
920

1021
### Fixed
1122

@@ -105,3 +116,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
105116
- Update [.golangci.yml](https://github.com/golang-templates/seed/blob/v0.14.0/.golangci.yml). ([#127](https://github.com/golang-templates/seed/pull/127))
106117
- Update [GoReleaser](https://github.com/goreleaser/goreleaser) to [0.162.0](https://github.com/goreleaser/goreleaser/releases/tag/v0.162.0). ([#126](https://github.com/golang-templates/seed/pull/126))
107118
- Update [golangci-lint](https://github.com/golangci/golangci-lint) to [1.39.0](https://github.com/golangci/golangci-lint/releases/tag/v1.39.0). ([#125](https://github.com/golang-templates/seed/pull/125))
119+
120+
<!-- markdownlint-configure-file
121+
MD024:
122+
# Only check sibling headings
123+
siblings_only: true
124+
-->

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/golang-templates/seed
22

3-
go 1.21
3+
go 1.22

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/golang-templates/seed/build
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/client9/misspell v0.3.4

0 commit comments

Comments
 (0)