Skip to content

Commit

Permalink
Update to Go 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IngmarStein committed Aug 19, 2024
1 parent b8d0afd commit 934e6fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ archives:
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
version_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
Expand Down
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.phony: fmt run run-8583 run-modbus echo-client http-client-nobody http-client-body http-client-form build test vet
.phony: all clean fmt run run-8583 run-modbus echo-client http-client-nobody http-client-body http-client-form build test vet

all: build

fmt:
go fmt ./...
Expand All @@ -23,4 +25,7 @@ vet:
go vet ./...

build: fmt
go build
CGO_ENABLED=0 go build

clean:
rm -f tcp-multiplexer
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ingmarstein/tcp-multiplexer

go 1.22.6
go 1.23.0

require (
github.com/davecgh/go-spew v1.1.1
Expand Down

0 comments on commit 934e6fa

Please sign in to comment.