diff --git a/CHANGELOG.md b/CHANGELOG.md index a1a9a8e1..c53b383d 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.7.1 - 2024-03-11 + +### Changed + +- GEN: Update to go 1.23 +- GEN: Update dependencies + ## 2.7.0 - 2024-03-11 ### Changed diff --git a/api/version.go b/api/version.go index 3accd4bf..16b8b7b3 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.7.0" + return "2.7.1" } diff --git a/api/version_test.go b/api/version_test.go index ae98114e..a5b3cf87 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.7.0", Version()) + assert.Equal(t, "2.7.1", Version()) } diff --git a/cmd/version_test.go b/cmd/version_test.go index dfa75c22..be1e7291 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.7.0\nCLI: test\n", + wantOut: "API: 2.7.1\nCLI: test\n", }, { name: "version version", giveVersion: "version", - wantOut: "API: 2.7.0\nCLI: version\n", + wantOut: "API: 2.7.1\nCLI: version\n", }, { name: "args", diff --git a/go.mod b/go.mod index 33432206..034cf3c7 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/lingrino/vaku/v2 -go 1.22 +go 1.23 require ( github.com/hashicorp/go-hclog v1.6.3