Skip to content

Commit 459bda8

Browse files
committed
Bumping versions:
make NEW_VERSION=v3.5.2 bump-version make NEW_CHART_VERSION=v1.3.2 bump-chart-version
1 parent 1d6340d commit 459bda8

File tree

6 files changed

+433
-17
lines changed

6 files changed

+433
-17
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
## unreleased
2+
3+
## v3.5.2 - 2023.05.23
24
* Bump golang.org/x/net
35

46
## v3.5.1 - 2023.05.10

Diff for: README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ secret `my-pvc-luks-key`.
6161
## Releases
6262

6363
The cloudscale.ch CSI plugin follows [semantic versioning](https://semver.org/).
64-
The current version is: **`v3.5.1`**.
64+
The current version is: **`v3.5.2`**.
6565

6666
* Bug fixes will be released as a `PATCH` update.
6767
* New features (such as CSI spec bumps) will be released as a `MINOR` update.
@@ -80,12 +80,12 @@ We recommend using the latest cloudscale.ch CSI driver compatible with your Kube
8080
| 1.17 | v1.3.1 | v3.0.0 |
8181
| 1.18 | v1.3.1 | v3.3.0 |
8282
| 1.19 | v1.3.1 | v3.3.0 |
83-
| 1.20 | v2.0.0 | v3.5.1 |
84-
| 1.21 | v2.0.0 | v3.5.1 |
85-
| 1.22 | v3.1.0 | v3.5.1 |
86-
| 1.23 | v3.1.0 | v3.5.1 |
87-
| 1.24 | v3.1.0 | v3.5.1 |
88-
| 1.25 | v3.3.0 | v3.5.1 |
83+
| 1.20 | v2.0.0 | v3.5.2 |
84+
| 1.21 | v2.0.0 | v3.5.2 |
85+
| 1.22 | v3.1.0 | v3.5.2 |
86+
| 1.23 | v3.1.0 | v3.5.2 |
87+
| 1.24 | v3.1.0 | v3.5.2 |
88+
| 1.25 | v3.3.0 | v3.5.2 |
8989

9090
**Requirements:**
9191

@@ -181,10 +181,10 @@ $ helm install -g -n kube-system --set controller.image.tag=dev --set node.image
181181
Before you continue, be sure to checkout to a [tagged
182182
release](https://github.com/cloudscale-ch/csi-cloudscale/releases).
183183
Always use the [latest stable version](https://github.com/cloudscale-ch/csi-cloudscale/releases/latest)
184-
For example, to use the latest stable version (`v3.5.1`) you can execute the following command:
184+
For example, to use the latest stable version (`v3.5.2`) you can execute the following command:
185185

186186
```
187-
$ kubectl apply -f https://raw.githubusercontent.com/cloudscale-ch/csi-cloudscale/master/deploy/kubernetes/releases/csi-cloudscale-v3.5.1.yaml
187+
$ kubectl apply -f https://raw.githubusercontent.com/cloudscale-ch/csi-cloudscale/master/deploy/kubernetes/releases/csi-cloudscale-v3.5.2.yaml
188188
```
189189

190190
The storage classes `cloudscale-volume-ssd` and `cloudscale-volume-bulk` will be created. The
@@ -398,15 +398,15 @@ $ git push origin
398398

399399
After it's merged to master, [create a new Github
400400
release](https://github.com/cloudscale-ch/csi-cloudscale/releases/new) from
401-
master with the version `v3.5.1` and then publish a new docker build:
401+
master with the version `v3.5.2` and then publish a new docker build:
402402

403403
```
404404
$ git checkout master
405405
$ make publish
406406
```
407407

408-
This will create a binary with version `v3.5.1` and docker image pushed to
409-
`cloudscalech/cloudscale-csi-plugin:v3.5.1`
408+
This will create a binary with version `v3.5.2` and docker image pushed to
409+
`cloudscalech/cloudscale-csi-plugin:v3.5.2`
410410

411411
## Contributing
412412

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.5.1
1+
v3.5.2

Diff for: charts/csi-cloudscale/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: csi-cloudscale
33
description: A Container Storage Interface Driver for cloudscale.ch volumes.
44
type: application
5-
version: 1.3.1
6-
appVersion: "3.5.1"
5+
version: 1.3.2
6+
appVersion: "3.5.2"
77
home: https://github.com/cloudscale-ch/csi-cloudscale
88
sources:
99
- https://github.com/cloudscale-ch/csi-cloudscale.git

Diff for: charts/csi-cloudscale/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ controller:
8484
image:
8585
registry: quay.io
8686
repository: cloudscalech/cloudscale-csi-plugin
87-
tag: v3.5.1
87+
tag: v3.5.2
8888
pullPolicy: IfNotPresent
8989
serviceAccountName:
9090
resources: {}
@@ -99,7 +99,7 @@ node:
9999
image:
100100
registry: quay.io
101101
repository: cloudscalech/cloudscale-csi-plugin
102-
tag: v3.5.1
102+
tag: v3.5.2
103103
pullPolicy: IfNotPresent
104104
nodeSelector: {}
105105
tolerations: []

0 commit comments

Comments
 (0)