Skip to content

Commit

Permalink
upgrade go (#1471)
Browse files Browse the repository at this point in the history
* upgrade go

* rm pr trigger
  • Loading branch information
lingrino authored Feb 20, 2024
1 parent 71401d7 commit 4aae418
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Validate
on:
workflow_dispatch:
push:
pull_request:

jobs:
docs:
Expand Down
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.6.3 - 2024-02-19

### Changed

- GEN: Update to go 1.22
- GEN: Update dependencies

## 2.6.2 - 2023-08-09

### 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.6.2"
return "2.6.3"
}
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.6.2", Version())
assert.Equal(t, "2.6.3", 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.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",
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.21
go 1.22

require (
github.com/hashicorp/go-hclog v1.6.2
Expand Down

0 comments on commit 4aae418

Please sign in to comment.