diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d6732cb4..83e73b18 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.0.1"} +{".":"0.0.2"} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..3ae00bcd --- /dev/null +++ b/CHANGELOG.md @@ -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)) diff --git a/Makefile b/Makefile index 5402a023..7cb9fd99 100644 --- a/Makefile +++ b/Makefile @@ -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)))