Skip to content

Commit 4111231

Browse files
authored
chore: release v2.0.0-beta.1 (#708)
1 parent aa9a01b commit 4111231

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Changelog
22

3-
## v2.0.0-beta.1 (TBA)
3+
## v2.0.0-beta.1 (2020-02-14)
4+
5+
* First release 🎉

README.md

Lines changed: 4 additions & 4 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-
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-alpha1/scw-darwin-x86_64"
73+
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.1/scw-v2.0.0-beta.1-darwin-x86_64"
7474

7575
# Init the CLI
7676
scw init
@@ -80,15 +80,15 @@ scw init
8080

8181
```bash
8282
# Download the release from github
83-
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-alpha1/scw-linux-x86_64"
83+
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.1/scw-v2.0.0-beta.1-linux-x86_64"
8484

8585
# Init the CLI
8686
scw init
8787
```
8888

8989
#### Windows
9090

91-
You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-alpha1/scw-windows-x86_64<br/>
91+
You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.1/scw-v2.0.0-beta.1-windows-x86_64<br/>
9292
[This official guide](https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-2010/ee537574(v=office.14)) explains how to add tools to your `PATH`.
9393

9494
<!-- TODO:
@@ -99,7 +99,7 @@ First, download [the `.deb` file](https://github.com/scaleway/scaleway-cli/relea
9999
100100
```bash
101101
export ARCH=amd64 # Can be 'amd64', 'arm', 'arm64' or 'i386'
102-
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-alpha.1/scw_2.0.0-alpha.1_${ARCH}.deb" -O /tmp/scw.deb
102+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.1/scw-v2.0.0-beta.1-${ARCH}.deb" -O /tmp/scw.deb
103103
```
104104
105105
Then, run the installation and remove the `.deb` file:

cmd/scw/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ import (
1616
)
1717

1818
var (
19-
Version = "v2.0.0-alpha1+dev" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"
20-
BuildDate = "unknown" // date -u '+%Y-%m-%d_%I:%M:%S%p'
21-
GitBranch = "unknown" // git symbolic-ref -q --short HEAD || echo HEAD"
22-
GitCommit = "unknown" // git rev-parse --short HEAD
19+
Version = "v2.0.0-beta.1" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"
20+
BuildDate = "unknown" // date -u '+%Y-%m-%d_%I:%M:%S%p'
21+
GitBranch = "unknown" // git symbolic-ref -q --short HEAD || echo HEAD"
22+
GitCommit = "unknown" // git rev-parse --short HEAD
2323
GoVersion = runtime.Version()
2424
GoOS = runtime.GOOS
2525
GoArch = runtime.GOARCH

0 commit comments

Comments
 (0)