From 976b5aaf82dbf29696e6867e83bf9957bc5f41cc Mon Sep 17 00:00:00 2001 From: Sean Lingren Date: Sat, 23 Nov 2024 13:32:16 -0800 Subject: [PATCH] release --- CHANGELOG.md | 6 ++++++ api/version.go | 2 +- api/version_test.go | 2 +- cmd/version_test.go | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72fd626a..0141013c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/api/version.go b/api/version.go index efc508c2..149f67dd 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.8.1" + return "2.8.2" } diff --git a/api/version_test.go b/api/version_test.go index 9dc9fa72..0f6b5d7c 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.8.1", Version()) + assert.Equal(t, "2.8.2", Version()) } diff --git a/cmd/version_test.go b/cmd/version_test.go index b38fdfbc..af4feeaa 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.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",