From bfefb5fe53420ed8242773a5b0a8bfe717a1af94 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Mon, 6 Mar 2023 12:10:08 -0800 Subject: [PATCH] go.mod: fix rest.NewRequestWithContext Previously we would not actually pass through the context (oops). It's possible some internal libraries also have this issue but I don't have access to the source anymore. --- go.mod | 4 ++-- go.sum | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 96cabf2..9ccfeb0 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/meterup/slack-go -go 1.17 +go 1.20 -require github.com/kevinburke/rest v0.0.0-20210506044642-5611499aa33c +require github.com/kevinburke/rest v0.0.0-20230306061549-8f487d822ad0 diff --git a/go.sum b/go.sum index 01ddbfc..2ad8695 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -github.com/kevinburke/rest v0.0.0-20210506044642-5611499aa33c h1:hnbwWED5rIu+UaMkLR3JtnscMVGqp35lfzQwLuZAAUY= -github.com/kevinburke/rest v0.0.0-20210506044642-5611499aa33c/go.mod h1:pD+iEcdAGVXld5foVN4e24zb/6fnb60tgZPZ3P/3T/I= +github.com/kevinburke/rest v0.0.0-20230306061549-8f487d822ad0 h1:2b9anKtyO/UTUQb+TAdPAW+w0p9xCIvng4fdZJ2xsYk= +github.com/kevinburke/rest v0.0.0-20230306061549-8f487d822ad0/go.mod h1:pD+iEcdAGVXld5foVN4e24zb/6fnb60tgZPZ3P/3T/I=