Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
lingrino committed Nov 23, 2024
1 parent cf9acdd commit 976b5aa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.8.2 - 2024-11-23

### Changed

- GEN: Email tag updates

## 2.8.1 - 2024-11-23

### 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.8.1"
return "2.8.2"
}
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.8.1", Version())
assert.Equal(t, "2.8.2", 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.8.1\nCLI: test\n",
wantOut: "API: 2.8.2\nCLI: test\n",
},
{
name: "version version",
giveVersion: "version",
wantOut: "API: 2.8.1\nCLI: version\n",
wantOut: "API: 2.8.2\nCLI: version\n",
},
{
name: "args",
Expand Down

0 comments on commit 976b5aa

Please sign in to comment.