Skip to content

Commit

Permalink
push go requirement to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Nov 30, 2023
1 parent ec44db4 commit 9c8cfb6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/citest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
go-version:
- 1.19.x
- 1.21.x
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ This file documents the revision history for the Livestatus Multitool Daemon (LM
next:
- submit pending commands as soon as syncing started
- accept python3 outputformat (#128)
- go build dependency changed to v1.21

2.1.7 Fri Oct 20 10:08:38 CEST 2023
- improve full scan sync, less delta scan timestamp filter too complex messages
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ GOVERSION:=$(shell \
awk -F'go| ' '{ split($$5, a, /\./); printf ("%04d%04d", a[1], a[2]); exit; }' \
)
# also update README.md when changing minumum version
MINGOVERSION:=00010019
MINGOVERSIONSTR:=1.19
MINGOVERSION:=00010021
MINGOVERSIONSTR:=1.21
BUILD:=$(shell git rev-parse --short HEAD)
# see https://github.com/go-modules-by-example/index/blob/master/010_tools/README.md
# and https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Requirements

You will need

- Go >= 1.19
- Go >= 1.21

to compile lmd.

Expand Down
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/sni/lmd/v2

go 1.19
go 1.21

require (
github.com/BurntSushi/toml v1.3.2
Expand Down

0 comments on commit 9c8cfb6

Please sign in to comment.