Skip to content

Commit 41a8bd2

Browse files
authoredOct 30, 2023
chore: release 0.8.1 (#298)
Signed-off-by: Chun-Che Peng <chunche.peng@gmail.com>
1 parent e54d5ca commit 41a8bd2

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
 

‎CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
<a name="unreleased"></a>
22
## [Unreleased]
33

4+
<a name="v0.8.1"></a>
5+
## [v0.8.1] - 2023-10-30
6+
### Fixed
7+
- Remove old workflows on addon checksum change (#297)
8+
9+
### Changed
10+
- Bump golang.org/x/net from 0.15.0 to 0.17.0 (#289)
11+
- Bump github.com/onsi/gomega from 1.27.10 to 1.28.0 (#286)
12+
413
<a name="v0.8.0"></a>
514
## [v0.8.0] - 2023-09-19
615

@@ -213,7 +222,8 @@
213222
### Added
214223
- Initial Release of Addon Manager
215224

216-
[Unreleased]: https://github.com/keikoproj/addon-manager/compare/v0.8.0...HEAD
225+
[Unreleased]: https://github.com/keikoproj/addon-manager/compare/v0.8.1...HEAD
226+
[v0.8.1]: https://github.com/keikoproj/addon-manager/compare/v0.8.0...v0.8.1
217227
[v0.8.0]: https://github.com/keikoproj/addon-manager/compare/v0.7.2...v0.8.0
218228
[v0.7.2]: https://github.com/keikoproj/addon-manager/compare/v0.7.1...v0.7.2
219229
[v0.7.1]: https://github.com/keikoproj/addon-manager/compare/v0.7.0...v0.7.1

‎pkg/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import "fmt"
1919
// The below variables will be overrriden using ldflags set by goreleaser during the build process
2020
var (
2121
// Version is the version string
22-
Version = "v0.8.0"
22+
Version = "v0.8.1"
2323

2424
// GitCommit is the git commit hash
2525
GitCommit = "NONE"

0 commit comments

Comments
 (0)
Please sign in to comment.