Skip to content

Commit 9a8b2dc

Browse files
author
Ivan
committed
chore: update Go toolchain requirement to 1.27.1 across all relevant files
1 parent cc5df8f commit 9a8b2dc

9 files changed

Lines changed: 15 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ concurrency:
4141
cancel-in-progress: true
4242

4343
env:
44-
GO_VERSION: "1.26.5"
44+
GO_VERSION: "1.27.1"
4545
NODE_VERSION: "22"
4646
FUZZTIME: ${{ github.event_name == 'schedule' && '120s' || '15s' }}
4747
GOVULN_VERSION: "v1.3.0"

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ concurrency:
3232
cancel-in-progress: true
3333

3434
env:
35-
GO_VERSION: "1.26.5"
35+
GO_VERSION: "1.27.1"
3636

3737
jobs:
3838
build:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ concurrency:
3535
cancel-in-progress: true
3636

3737
env:
38-
GO_VERSION: "1.26.5"
38+
GO_VERSION: "1.27.1"
3939

4040
jobs:
4141
verify:

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
Dates use YYYY-MM-DD.
44

5-
## [1.1.3] - 2026-09-06
5+
## [1.1.3] - 2026-09-TBD
6+
7+
### Changed
8+
9+
- Go toolchain requirement raised to 1.27.1+.
610

711
### Fixed
812

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ fix:
9999
$(GOLANGCI_LINT) run --fix-diff ./...
100100

101101
lint:
102-
GOTOOLCHAIN=go1.26.5 $(GOLANGCI_LINT) run ./...
102+
GOTOOLCHAIN=go1.27.1 $(GOLANGCI_LINT) run ./...
103103

104104
lint-gosec:
105-
GOTOOLCHAIN=go1.26.5 $(GOSEC) -exclude-dir=examples -exclude-dir=bindings -exclude=G404,G304,G204,G306,G103,G115 ./...
105+
GOTOOLCHAIN=go1.27.1 $(GOSEC) -exclude-dir=examples -exclude-dir=bindings -exclude=G404,G304,G204,G306,G103,G115 ./...
106106

107107
vet:
108-
GOTOOLCHAIN=go1.26.5 go vet ./...
108+
GOTOOLCHAIN=go1.27.1 go vet ./...
109109

110110
cover:
111111
go test -count=1 -coverprofile=coverage.out ./...

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec/micron.txt
1515

1616
## Requirements
1717

18-
- Go 1.26.5+
18+
- Go 1.27.1+
1919
- Standard library only
2020
- Node.js (optional, interop / JS bench)
2121
- Python 3 (optional, NomadNet oracle)

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.26-alpine AS build
1+
FROM golang:1.27-alpine AS build
22

33
WORKDIR /src
44

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module micron-parser-go
22

3-
go 1.26.5
3+
go 1.27.1

web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h1 class="hero-brand">Micron-Parser-Go</h1>
3535

3636
<section class="landing-section">
3737
<h2>Get started</h2>
38-
<p>Requires Go 1.26.5+. The package uses the standard library only. Add it to your module, then convert Micron source to an HTML fragment:</p>
38+
<p>Requires Go 1.27.1+. The package uses the standard library only. Add it to your module, then convert Micron source to an HTML fragment:</p>
3939
<ol class="landing-steps">
4040
<li>Import <code>micron-parser-go/micron</code>.</li>
4141
<li>Create a <code>Parser</code> with theme and monospace options.</li>

0 commit comments

Comments
 (0)