Skip to content

Commit db4f973

Browse files
committed
release(v0.5.0-alpha.1): prepare release
This is the official v0.5.0-alpha.1 release. Signed-off-by: Artem Chernyshev <[email protected]>
1 parent ab24901 commit db4f973

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.drone.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ steps:
3535
REGISTRY: registry.dev.talos-systems.io
3636
commands:
3737
- make
38+
- make check-dirty
3839
when:
3940
event:
4041
include:

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## [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)
21

3-
Welcome to the v0.5.0-alpha.0 release of CAPI Control Plane Provider Talos!
2+
## [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)
3+
4+
Welcome to the v0.5.0-alpha.1 release of CAPI Control Plane Provider Talos!
45
*This is a pre-release of CAPI Control Plane Provider Talos*
56

67

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,7 @@ integration-test: integration-test-build
140140

141141
.PHONY: unit-tests
142142
unit-tests: ## Performs unit tests
143-
@$(MAKE) local-$@ DEST=$(ARTIFACTS)
143+
@$(MAKE) local-$@ DEST=$(ARTIFACTS)
144+
145+
check-dirty: ## Verifies that source tree is not dirty
146+
@if test -n "`git status --porcelain`"; then echo "Source tree is dirty"; git status; exit 1 ; fi

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ require (
1818
github.com/siderolabs/talos/pkg/machinery v1.4.0
1919
github.com/stretchr/testify v1.8.2
2020
google.golang.org/grpc v1.54.0
21+
google.golang.org/protobuf v1.30.0
2122
gopkg.in/typ.v4 v4.2.0
2223
gopkg.in/yaml.v3 v3.0.1
2324
k8s.io/api v0.26.1
@@ -136,7 +137,6 @@ require (
136137
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
137138
google.golang.org/appengine v1.6.7 // indirect
138139
google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea // indirect
139-
google.golang.org/protobuf v1.30.0 // indirect
140140
gopkg.in/inf.v0 v0.9.1 // indirect
141141
gopkg.in/ini.v1 v1.67.0 // indirect
142142
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)