From 9c0e95153bd1c63b2fd0e2397cc07ab6902a93c2 Mon Sep 17 00:00:00 2001 From: Ryan Boehning <1250684+ryboe@users.noreply.github.com> Date: Wed, 3 Aug 2022 14:08:41 +0000 Subject: [PATCH] Bump go.mod directive to 1.19 Also bump the codespace Go version to 1.19. --- .devcontainer/devcontainer.json | 8 ++++---- go.mod | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5124e1e..69a89d4 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,8 +3,8 @@ "build": { "dockerfile": "Dockerfile", "args": { - "GO_VERSION": "1.18", - }, + "GO_VERSION": "1.19" + } }, // dlv needs these capabilities. It needs to run the ptrace (process trace) // syscall, and we need to disable the default seccomp profile applied to @@ -35,6 +35,6 @@ "eamodio.gitlens", "golang.go", "ms-azuretools.vscode-docker", - "redhat.vscode-yaml", - ], + "redhat.vscode-yaml" + ] } diff --git a/go.mod b/go.mod index c480952..ddfd63a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ryboe/q -go 1.18 +go 1.19 require github.com/kr/pretty v0.3.0