Skip to content

Commit

Permalink
upgrade go
Browse files Browse the repository at this point in the history
  • Loading branch information
lingrino committed Aug 17, 2024
1 parent 6d67cc3 commit a02187b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion api/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package vaku

// Version gives the current Vaku API version.
func Version() string {
return "2.7.0"
return "2.7.1"
}
2 changes: 1 addition & 1 deletion api/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
4 changes: 2 additions & 2 deletions cmd/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a02187b

Please sign in to comment.