Skip to content

Commit f62f583

Browse files
committed
bumped version to v0.40.0_preview_2
minimum Go version increased to go1.24.0 disabled unconvert linter. the latest version of the linter does not work with go1.24.0 modified 0001-statsviz.patch to match changes go version change in go.mod
1 parent f470f94 commit f62f583

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

0001-statsviz.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ index 7575b599c..adfee04bf 100644
33
--- a/go.mod
44
+++ b/go.mod
55
@@ -3,6 +3,7 @@ module github.com/jetsetilly/gopher2600
6-
go 1.22.0
6+
go 1.24.0
77

88
require (
99
+ github.com/arl/statsviz v0.6.0

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
version = v0.40.0-preview
2+
version = v0.40.0-preview_2
33

44
goBinary = go
55
gcflags = -c 3 -B -wb=false -l -l -l -l
@@ -82,14 +82,14 @@ ifeq (, $(shell which go-errorlint))
8282
$(error "go-errorlint not installed")
8383
endif
8484
# https://github.com/mdempsky/unconvert
85-
ifeq (, $(shell which unconvert))
86-
$(error "unconvert not installed")
87-
endif
85+
# ifeq (, $(shell which unconvert))
86+
# $(error "unconvert not installed")
87+
# endif
8888

8989
lint: check_linters
9090
go vet ./...
9191
go-errorlint -c 0 -errorf -errorf-multi ./...
92-
unconvert ./...
92+
# unconvert ./...
9393

9494
### testing targets
9595
.PHONY: test race race_debug fuzz

go.mod

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

3-
go 1.22.0
3+
go 1.24.0
44

55
require (
66
github.com/go-audio/audio v1.0.0

0 commit comments

Comments
 (0)