Skip to content

Commit ae9b32a

Browse files
Merge pull request #801 from Nordix/add/release-1.3
🌱 Add release 1.3 branch/release related changes
2 parents 6adff3b + 62edf7b commit ae9b32a

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,12 +454,12 @@ delete-examples:
454454
## Release
455455
## --------------------------------------
456456

457-
## latest git tag for the commit, e.g., v1.2.1
457+
## latest git tag for the commit, e.g., v1.3.0
458458
RELEASE_TAG ?= $(shell git describe --abbrev=0 2>/dev/null)
459459
ifneq (,$(findstring -,$(RELEASE_TAG)))
460460
PRE_RELEASE=true
461461
endif
462-
# the previous release tag, e.g., v1.2.0, excluding pre-release tags
462+
# the previous release tag, e.g., v1.3.0, excluding pre-release tags
463463
PREVIOUS_TAG ?= $(shell git tag -l | grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$$" | sort -V | grep -B1 $(RELEASE_TAG) | head -n 1 2>/dev/null)
464464
RELEASE_DIR := out
465465
RELEASE_NOTES_DIR := releasenotes

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ provider:
5353
You can also specify the provider version by appending a version tag to the provider name as follows:
5454

5555
```shell
56-
clusterctl init --infrastructure metal3:v1.2.0
56+
clusterctl init --infrastructure metal3:v1.3.0
5757
```
5858

5959
1. Deploy Baremetal Operator manifests and CRDs. You need to install cert-manager for Baremetal Operator,
@@ -126,6 +126,11 @@ Or use parallel for faster tests. Note that these tests run in multiple VMs by c
126126
- **/test-ubuntu-e2e-parallel-main** runs e2e parallel tests with CAPM3 API version v1beta1 and branch main on Ubuntu
127127
- **/test-centos-e2e-parallel-main** runs e2e parallel tests with CAPM3 API version v1beta1 and branch main on CentOS
128128
129+
Release-1.3 branch:
130+
131+
- **/test-ubuntu-e2e-release-1-3** runs e2e tests with CAPM3 API version v1beta1 and branch release-1.3 on Ubuntu
132+
- **/test-centos-e2e-release-1-3** runs e2e tests with CAPM3 API version v1beta1 and branch release-1.3 on CentOS
133+
129134
Release-1.2 branch:
130135
131136
- **/test-ubuntu-e2e-release-1-2** runs e2e tests with CAPM3 API version v1beta1 and branch release-1.2 on Ubuntu

0 commit comments

Comments
 (0)