From 4ce47beb7b276037ea28aacd23380c35488a9b0e Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Tue, 18 Jan 2022 18:13:03 +0000 Subject: [PATCH 1/3] Update go version to 1.16 The linting scripts don't run on 1.15 any more, so builds are not running against 1.15 any more. Technically it will still compile and run against go 1.15 but if we can't verify it in CI, it's not known to be true in future. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ae68f36..9551d9d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Web service which collects and serves bug reports. -rageshake requires Go version 1.15 or later. +rageshake requires Go version 1.16 or later. To run it, do: @@ -98,4 +98,4 @@ You can get notifications when a new rageshake arrives on the server. Currently this tool supports pushing notifications as GitHub issues in a repo, through a Slack webhook or by email, cf sample config file for how to -configure them. \ No newline at end of file +configure them. From 399590d556327ade64476f7eb132651c72593e26 Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Wed, 19 Jan 2022 12:44:15 +0000 Subject: [PATCH 2/3] Add changelog. --- changelog.d/42.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/42.misc diff --git a/changelog.d/42.misc b/changelog.d/42.misc new file mode 100644 index 0000000..dad85f8 --- /dev/null +++ b/changelog.d/42.misc @@ -0,0 +1 @@ +Update docs that rageshakes requires golang >1.16. From c6e4ad89ffdff3f1f6bdd5cf4bc23564256d4f4b Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Wed, 19 Jan 2022 12:45:47 +0000 Subject: [PATCH 3/3] Go.mod should require go 1.16 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index b62d9ba..d445d21 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/matrix-org/rageshake -go 1.15 +go 1.16 require ( github.com/google/go-github v0.0.0-20170401000335-12363ffc1001