From fb922963f8e882cdc896c9b93a25f5ac8024e5a0 Mon Sep 17 00:00:00 2001 From: Sean Lingren Date: Sat, 23 Nov 2024 13:36:57 -0800 Subject: [PATCH] update emails (#1590) * update emails * release --- .goreleaser.yml | 2 -- CHANGELOG.md | 6 ++++++ Dockerfile | 2 +- api/version.go | 2 +- api/version_test.go | 2 +- cmd/vaku.go | 2 +- cmd/version_test.go | 4 ++-- docs/cli/vaku.md | 2 +- 8 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 91ca88ee..48b878e8 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -65,6 +65,4 @@ dockers: build_flag_templates: - --label=org.opencontainers.image.created={{.Date}} - --label=org.opencontainers.image.revision={{.FullCommit}} - - --label=org.opencontainers.image.source={{.GitURL}} - - --label=org.opencontainers.image.title={{.ProjectName}} - --label=org.opencontainers.image.version={{.Version}} 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/Dockerfile b/Dockerfile index aabae398..4d082a8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.ref.name="vaku" \ org.opencontainers.image.ref.title="vaku" \ org.opencontainers.image.description="A CLI to extend the official Vault client" \ org.opencontainers.image.licenses="MIT" \ - org.opencontainers.image.authors="sean@lingrino.com" \ + org.opencontainers.image.authors="sean@lingren.com" \ org.opencontainers.image.url="https://vaku.dev" \ org.opencontainers.image.documentation="https://vaku.dev" \ org.opencontainers.image.source="https://github.com/lingrino/vaku" 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/vaku.go b/cmd/vaku.go index 51217e3a..006d3920 100644 --- a/cmd/vaku.go +++ b/cmd/vaku.go @@ -21,7 +21,7 @@ commands should not be run on non-K/V engines. CLI documentation - 'vaku help [cmd]' API documentation - https://pkg.go.dev/github.com/lingrino/vaku/v2/api -Built by Sean Lingren ` +Built by Sean Lingren ` ) // newVakuCmd sets flags/subcommands and returns the base vaku command. 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", diff --git a/docs/cli/vaku.md b/docs/cli/vaku.md index 5d366961..241648e0 100644 --- a/docs/cli/vaku.md +++ b/docs/cli/vaku.md @@ -17,7 +17,7 @@ commands should not be run on non-K/V engines. CLI documentation - 'vaku help [cmd]' API documentation - https://pkg.go.dev/github.com/lingrino/vaku/v2/api -Built by Sean Lingren +Built by Sean Lingren ### Examples