From 4aae4183402ad62c636ce9a365cac7e2c60d356f Mon Sep 17 00:00:00 2001 From: Sean Lingren Date: Mon, 19 Feb 2024 16:41:48 -0800 Subject: [PATCH] upgrade go (#1471) * upgrade go * rm pr trigger --- .github/workflows/validate.yml | 1 - CHANGELOG.md | 7 +++++++ api/version.go | 2 +- api/version_test.go | 2 +- cmd/version_test.go | 4 ++-- go.mod | 2 +- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 124c16eb..856889b2 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -3,7 +3,6 @@ name: Validate on: workflow_dispatch: push: - pull_request: jobs: docs: diff --git a/CHANGELOG.md b/CHANGELOG.md index acfe63ff..35587a77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 2.6.3 - 2024-02-19 + +### Changed + +- GEN: Update to go 1.22 +- GEN: Update dependencies + ## 2.6.2 - 2023-08-09 ### Changed diff --git a/api/version.go b/api/version.go index bac1fde1..63d47051 100644 --- a/api/version.go +++ b/api/version.go @@ -2,5 +2,5 @@ package vaku // Version gives the current Vaku API version. func Version() string { - return "2.6.2" + return "2.6.3" } diff --git a/api/version_test.go b/api/version_test.go index e0eb4012..aa27afba 100644 --- a/api/version_test.go +++ b/api/version_test.go @@ -8,5 +8,5 @@ import ( func TestVersion(t *testing.T) { t.Parallel() - assert.Equal(t, "2.6.2", Version()) + assert.Equal(t, "2.6.3", Version()) } diff --git a/cmd/version_test.go b/cmd/version_test.go index f1134e1c..573ac345 100644 --- a/cmd/version_test.go +++ b/cmd/version_test.go @@ -19,12 +19,12 @@ func TestVersion(t *testing.T) { { name: "version test", giveVersion: "test", - wantOut: "API: 2.6.2\nCLI: test\n", + wantOut: "API: 2.6.3\nCLI: test\n", }, { name: "version version", giveVersion: "version", - wantOut: "API: 2.6.2\nCLI: version\n", + wantOut: "API: 2.6.3\nCLI: version\n", }, { name: "args", diff --git a/go.mod b/go.mod index 37fb6f24..e65f47b7 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/lingrino/vaku/v2 -go 1.21 +go 1.22 require ( github.com/hashicorp/go-hclog v1.6.2