Skip to content

Commit

Permalink
update emails (#1590)
Browse files Browse the repository at this point in the history
* update emails

* release
  • Loading branch information
lingrino authored Nov 23, 2024
1 parent cb17e01 commit fb92296
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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())
}
2 changes: 1 addition & 1 deletion cmd/vaku.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 <sean@lingrino.com>`
Built by Sean Lingren <sean@lingren.com>`
)

// newVakuCmd sets flags/subcommands and returns the base vaku command.
Expand Down
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
2 changes: 1 addition & 1 deletion docs/cli/vaku.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <sean@lingrino.com>
Built by Sean Lingren <sean@lingren.com>

### Examples

Expand Down

0 comments on commit fb92296

Please sign in to comment.