Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Changelog

## v2.0.0-beta.1 (TBA)
## v2.0.0-beta.1 (2020-02-14)

* First release 🎉
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

# Download the release from github
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-alpha1/scw-darwin-x86_64"
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"

# Init the CLI
scw init
Expand All @@ -80,15 +80,15 @@ scw init

```bash
# Download the release from github
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-alpha1/scw-linux-x86_64"
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"

# Init the CLI
scw init
```

#### Windows

You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-alpha1/scw-windows-x86_64<br/>
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/>
[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`.

<!-- TODO:
Expand All @@ -99,7 +99,7 @@ First, download [the `.deb` file](https://github.com/scaleway/scaleway-cli/relea

```bash
export ARCH=amd64 # Can be 'amd64', 'arm', 'arm64' or 'i386'
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
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
```

Then, run the installation and remove the `.deb` file:
Expand Down
8 changes: 4 additions & 4 deletions cmd/scw/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import (
)

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