Skip to content

Commit 0365b97

Browse files
chore: release 2.3.1 (#1924)
Co-authored-by: Rémy Léone <[email protected]>
1 parent cd7e8e8 commit 0365b97

File tree

3 files changed

+41
-6
lines changed

3 files changed

+41
-6
lines changed

CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Changelog
22

3+
## v2.3.1 (2021-06-08)
4+
5+
### Features
6+
7+
* **dns**: add dns commands ([#1879](https://github.com/scaleway/scaleway-cli/pull/1879))
8+
* **instance**: add a generated name for create volume ([#1917](https://github.com/scaleway/scaleway-cli/pull/1917))
9+
* **instance**: add attach/detach ip commands ([#1911](https://github.com/scaleway/scaleway-cli/pull/1911))
10+
* **instance**: add support for instances with no local volumes reqs ([#1840](https://github.com/scaleway/scaleway-cli/pull/1840))
11+
* **instance**: import file for cloud-init ([#1525](https://github.com/scaleway/scaleway-cli/pull/1525))
12+
* **iot**: Add name generator for iot route create ([#1895](https://github.com/scaleway/scaleway-cli/pull/1895))
13+
* **iot**: add route update method ([#1873](https://github.com/scaleway/scaleway-cli/pull/1873))
14+
* **iot**: add support for get-ca command ([#1863](https://github.com/scaleway/scaleway-cli/pull/1863))
15+
* **k8s**: add kilo CNI ([#1916](https://github.com/scaleway/scaleway-cli/pull/1916))
16+
* **k8s**: deprecate dashboard field ([#1857](https://github.com/scaleway/scaleway-cli/pull/1857))
17+
* **lb**: switch CLI to ZonedApi ([#1893](https://github.com/scaleway/scaleway-cli/pull/1893))
18+
* **rdb**: add support for snapshots and block volume storage ([#1875](https://github.com/scaleway/scaleway-cli/pull/1875))
19+
* add banner about scw feedback bug when a panic occurs ([#1813](https://github.com/scaleway/scaleway-cli/pull/1813))
20+
21+
### Fixes
22+
23+
* **instance**: use right zone for all calls in server-type ([#1883](https://github.com/scaleway/scaleway-cli/pull/1883))
24+
* ensure we upgrade the latest tag of the CLI in dockerhub ([#1912](https://github.com/scaleway/scaleway-cli/pull/1912))
25+
26+
### Others
27+
28+
* **chore - deps**: bump hosted-git-info in /scripts/release ([#1906](https://github.com/scaleway/scaleway-cli/pull/1906))
29+
* **chore**: add a test to ensure documentation is generated ([#1838](https://github.com/scaleway/scaleway-cli/pull/1838))
30+
* **chore**: bump sdk ([#1864](https://github.com/scaleway/scaleway-cli/pull/1864))
31+
* **chore**: cleanup after v2.3.0 release ([#1812](https://github.com/scaleway/scaleway-cli/pull/1812))
32+
* **chore**: make test fail if docs is not up to date ([#1913](https://github.com/scaleway/scaleway-cli/pull/1913))
33+
* **dns**: add support for enum marshall status for certificate ([#1881](https://github.com/scaleway/scaleway-cli/pull/1881))
34+
* **doc**: fix and update Docker documentation ([#1887](https://github.com/scaleway/scaleway-cli/pull/1887))
35+
36+
37+
338
## v2.3.0 (2021-03-10)
439

540
### Features

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ echo $PATH
6565
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
6666

6767
# Download the release from github
68-
curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-2.3.0-darwin-x86_64"
68+
curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.1/scw-2.3.1-darwin-x86_64"
6969

7070
# Allow executing file as program
7171
chmod +x /usr/local/bin/scw
@@ -78,7 +78,7 @@ scw init
7878

7979
```bash
8080
# Download the release from github
81-
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-2.3.0-linux-x86_64"
81+
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.1/scw-2.3.1-linux-x86_64"
8282

8383
# Allow executing file as program
8484
sudo chmod +x /usr/local/bin/scw
@@ -89,7 +89,7 @@ scw init
8989

9090
#### Windows
9191

92-
You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-2.3.0-windows-x86_64.exe<br/>
92+
You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.3.1/scw-2.3.1-windows-x86_64.exe<br/>
9393
[This official guide](https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-2010/ee537574%28v%3Doffice.14%29) explains how to add tools to your `PATH`.
9494

9595
<!-- TODO:
@@ -100,7 +100,7 @@ First, download [the `.deb` file](https://github.com/scaleway/scaleway-cli/relea
100100
101101
```bash
102102
export ARCH=amd64 # Can be 'amd64', 'arm', 'arm64' or 'i386'
103-
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-v2.3.0-${ARCH}.deb" -O /tmp/scw.deb
103+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.1/scw-v2.3.1-${ARCH}.deb" -O /tmp/scw.deb
104104
```
105105
106106
Then, run the installation and remove the `.deb` file:
@@ -126,7 +126,7 @@ docker run scaleway/cli version
126126
You can use the CLI as you would run any Docker image:
127127

128128
```sh
129-
docker run -i --rm scaleway/cli:v2.3.0
129+
docker run -i --rm scaleway/cli:v2.3.1
130130
```
131131

132132
See more in-depth information about running the CLI in Docker [here](./docs/docker.md)

cmd/scw/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
var (
1717
// Version is updated manually
18-
Version = "v2.3.0+dev" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"
18+
Version = "v2.3.1" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"
1919

2020
// These are initialized by the build script
2121

0 commit comments

Comments
 (0)