Skip to content

Commit

Permalink
release(v0.5.0-alpha.1): prepare release
Browse files Browse the repository at this point in the history
This is the official v0.5.0-alpha.1 release.

Signed-off-by: Artem Chernyshev <artem.chernyshev@talos-systems.com>
  • Loading branch information
Unix4ever committed Apr 20, 2023
1 parent ab24901 commit db4f973
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ steps:
REGISTRY: registry.dev.talos-systems.io
commands:
- make
- make check-dirty
when:
event:
include:
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## [CAPI Control Plane Provider Talos 0.5.0-alpha.0](https://github.com/talos-systems/cluster-api-control-plane-provider-talos/releases/tag/v0.5.0-alpha.0) (2023-04-19)

Welcome to the v0.5.0-alpha.0 release of CAPI Control Plane Provider Talos!
## [CAPI Control Plane Provider Talos 0.5.0-alpha.1](https://github.com/talos-systems/cluster-api-control-plane-provider-talos/releases/tag/v0.5.0-alpha.1) (2023-04-19)

Welcome to the v0.5.0-alpha.1 release of CAPI Control Plane Provider Talos!
*This is a pre-release of CAPI Control Plane Provider Talos*


Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,7 @@ integration-test: integration-test-build

.PHONY: unit-tests
unit-tests: ## Performs unit tests
@$(MAKE) local-$@ DEST=$(ARTIFACTS)
@$(MAKE) local-$@ DEST=$(ARTIFACTS)

check-dirty: ## Verifies that source tree is not dirty
@if test -n "`git status --porcelain`"; then echo "Source tree is dirty"; git status; exit 1 ; fi
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ require (
github.com/siderolabs/talos/pkg/machinery v1.4.0
github.com/stretchr/testify v1.8.2
google.golang.org/grpc v1.54.0
google.golang.org/protobuf v1.30.0
gopkg.in/typ.v4 v4.2.0
gopkg.in/yaml.v3 v3.0.1
k8s.io/api v0.26.1
Expand Down Expand Up @@ -136,7 +137,6 @@ require (
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
Expand Down

0 comments on commit db4f973

Please sign in to comment.