Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.0.2 #46

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.0.1"}
{".":"0.0.2"}
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Changelog

## [0.0.2](https://github.com/validator-labs/validatorctl/compare/v0.0.1...v0.0.2) (2024-06-19)


### Features

* configure validatorctl ([#1](https://github.com/validator-labs/validatorctl/issues/1)) ([34285c6](https://github.com/validator-labs/validatorctl/commit/34285c60015173a261a35762a3ef206ee34ee794))
* ensure no binaries are embedded with validatorctl ([#31](https://github.com/validator-labs/validatorctl/issues/31)) ([02de3a5](https://github.com/validator-labs/validatorctl/commit/02de3a55d5a88aea6befc5958852a0f8585f9c83))
* only ask for role privilege user if running from admin account ([#16](https://github.com/validator-labs/validatorctl/issues/16)) ([6cdee2c](https://github.com/validator-labs/validatorctl/commit/6cdee2cc963c416cd8ad7ba90e73a2571b5fa2f6))


### Bug Fixes

* **deps:** update golang.org/x/exp digest to 7f521ea ([#18](https://github.com/validator-labs/validatorctl/issues/18)) ([c5e83cc](https://github.com/validator-labs/validatorctl/commit/c5e83cc2e4f4c85cc00a4f14ff2d6bbf08eb24d0))
* **deps:** update module github.com/spf13/cobra to v1.8.1 ([e6d64d5](https://github.com/validator-labs/validatorctl/commit/e6d64d5b5c77ee3ab2162079a55491fbdcae8252))
* **deps:** update module github.com/validator-labs/validator-plugin-network to v0.0.17 ([6b58097](https://github.com/validator-labs/validatorctl/commit/6b580976398b462d1df569332a720064f9c6f044))
* **deps:** update module gopkg.in/yaml.v2 to v3 ([#22](https://github.com/validator-labs/validatorctl/issues/22)) ([f56c29f](https://github.com/validator-labs/validatorctl/commit/f56c29ff81c380a3ef64c2bac1cb447ef7634f2b))
* **deps:** update module gopkg.in/yaml.v2 to v3 ([#23](https://github.com/validator-labs/validatorctl/issues/23)) ([c9b8708](https://github.com/validator-labs/validatorctl/commit/c9b870801dfa7bbdd0d6e4a48745a8859f40216f))
* **deps:** update module gopkg.in/yaml.v2 to v3 ([#35](https://github.com/validator-labs/validatorctl/issues/35)) ([3bfdf86](https://github.com/validator-labs/validatorctl/commit/3bfdf86a945f012168d01d7cdf283785c3469794))
* enable concurrent integration test execution ([#36](https://github.com/validator-labs/validatorctl/issues/36)) ([25a47de](https://github.com/validator-labs/validatorctl/commit/25a47de76359f92b635e1704f9dfeb52aea036ef))
* setup go for release builds ([a811556](https://github.com/validator-labs/validatorctl/commit/a8115568d5460fdade1ea5c057f5ec10c8e54f0d))


### Other

* remove dead code ([#25](https://github.com/validator-labs/validatorctl/issues/25)) ([0631a09](https://github.com/validator-labs/validatorctl/commit/0631a0998a9c1e51610b6b3fb0cf4a77d3940024))
* remove logging to disk ([#30](https://github.com/validator-labs/validatorctl/issues/30)) ([c531b74](https://github.com/validator-labs/validatorctl/commit/c531b747dc9caf1a30f91e10c411ffd29f9ae491))


### Refactoring

* ensure int. tests succeed w/ a non-dev CLI version ([#40](https://github.com/validator-labs/validatorctl/issues/40)) ([19f0599](https://github.com/validator-labs/validatorctl/commit/19f0599763a2de9d831e97ebb1208bda99d03f56))
* use prompts-tui ReadCACert and file reader ([#14](https://github.com/validator-labs/validatorctl/issues/14)) ([d2bd299](https://github.com/validator-labs/validatorctl/commit/d2bd2998beb6f00bad0ed813af119242114b3986))
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ KUBECTL_VERSION ?= 1.24.10

# Product Version
VERSION_SUFFIX ?= -dev
VERSION ?= 0.0.1${VERSION_SUFFIX} # x-release-please-version
VERSION ?= 0.0.2${VERSION_SUFFIX} # x-release-please-version

# Common vars
MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
Expand Down
Loading