Skip to content

Commit e6bda15

Browse files
chore: release 2.0.0-beta.4 (#1085)
Co-authored-by: Rémy Léone <[email protected]>
1 parent 47da397 commit e6bda15

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v2.0.0-beta.4 (2020-06-08)
4+
5+
### Features
6+
7+
* **instance**: hide deprecated offers ([#1065](https://github.com/scaleway/scaleway-cli/pull/1065))
8+
9+
### Fixes
10+
11+
* **baremetal**: check that install status is not nil before installwait ([#1073](https://github.com/scaleway/scaleway-cli/pull/1073))
12+
* **init**: fix panic ([#1082](https://github.com/scaleway/scaleway-cli/pull/1082))
13+
14+
15+
16+
317
## v2.0.0-beta.3 (2020-06-03)
418

519
### Features

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ echo $PATH
7070
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
7171

7272
# Download the release from github
73-
curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.3/scw-2-0-0-beta-3-darwin-x86_64"
73+
curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.4/scw-2-0-0-beta-4-darwin-x86_64"
7474

7575
# Allow executing file as program
7676
chmod +x /usr/local/bin/scw
@@ -83,7 +83,7 @@ scw init
8383

8484
```bash
8585
# Download the release from github
86-
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.3/scw-2-0-0-beta-3-linux-x86_64"
86+
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.4/scw-2-0-0-beta-4-linux-x86_64"
8787

8888
# Allow executing file as program
8989
sudo chmod +x /usr/local/bin/scw
@@ -94,7 +94,7 @@ scw init
9494

9595
#### Windows
9696

97-
You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.3/scw-2-0-0-beta-3-windows-x86_64.exe<br/>
97+
You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.4/scw-2-0-0-beta-4-windows-x86_64.exe<br/>
9898
[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`.
9999

100100
<!-- TODO:
@@ -105,7 +105,7 @@ First, download [the `.deb` file](https://github.com/scaleway/scaleway-cli/relea
105105
106106
```bash
107107
export ARCH=amd64 # Can be 'amd64', 'arm', 'arm64' or 'i386'
108-
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.3/scw-v2-0-0-beta-3-${ARCH}.deb" -O /tmp/scw.deb
108+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.4/scw-v2-0-0-beta-4-${ARCH}.deb" -O /tmp/scw.deb
109109
```
110110
111111
Then, run the installation and remove the `.deb` file:
@@ -131,7 +131,7 @@ docker run scaleway/cli version
131131
You can use the CLI as you would run any Docker image:
132132

133133
```sh
134-
docker run -i --rm scaleway/cli:v2.0.0-beta.3
134+
docker run -i --rm scaleway/cli:v2.0.0-beta.4
135135
```
136136

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

cmd/scw/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
var (
1515
// Version is updated manually
16-
Version = "v2.0.0-beta.3+dev" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"
16+
Version = "v2.0.0-beta.4" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"
1717

1818
// These are initialized by the build script
1919

0 commit comments

Comments
 (0)