Skip to content

Commit

Permalink
release 2.8.0 (#1586)
Browse files Browse the repository at this point in the history
  • Loading branch information
lingrino authored Oct 28, 2024
1 parent 7454a27 commit 75ff365
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.0 - 2024-10-27

### Added

- API: Add ignoreAccessErrors option to skip list and read errors and continue operation
- CLI: Add --ignore-access-errors flag to skip list and read errors and continue operation

### Changed

- GEN: Update dependencies

## 2.7.1 - 2024-03-11

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

0 comments on commit 75ff365

Please sign in to comment.