Skip to content

Commit 863aafc

Browse files
Release v1.20 (#574)
1 parent d5ec863 commit 863aafc

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

README.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ mkdir -p /usr/local/bin
8989
mv /usr/local/bin/scw /tmp/scw.old
9090

9191
# get latest release
92-
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.19/scw-darwin-amd64" -O /usr/local/bin/scw
92+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.20/scw-darwin-amd64" -O /usr/local/bin/scw
9393

9494
# test
9595
scw version
@@ -100,7 +100,7 @@ Install the latest release on Linux:
100100
```bash
101101
# get latest release
102102
export ARCH=amd64 # can be 'i386', 'amd64' or 'armhf'
103-
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.19/scw_1.19_${ARCH}.deb" -O /tmp/scw.deb
103+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.20/scw_1.20_${ARCH}.deb" -O /tmp/scw.deb
104104
dpkg -i /tmp/scw.deb && rm -f /tmp/scw.deb
105105

106106
# test
@@ -1210,11 +1210,28 @@ $ scw inspect myserver | jq '.[0].public_ip.address'
12101210

12111211
## Changelog
12121212

1213-
### v1.19+dev (unreleased)
1213+
### v1.20+dev (unreleased)
12141214

12151215
* This is the current development version. Update below with your changes. Remove this line when releasing the package.
12161216

1217-
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.19...master)
1217+
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.20...master)
1218+
1219+
### v1.20 (2019-09-10)
1220+
1221+
* feat: add support for exact match when looking for an image ([#562](https://github.com/scaleway/scaleway-cli/pull/562))
1222+
* feat: change default server type to DEV1-S ([#561](https://github.com/scaleway/scaleway-cli/pull/561))
1223+
* feat: drop go 1.7, 1.8 and 1.9 support ([#564](https://github.com/scaleway/scaleway-cli/pull/564))
1224+
* feat: drop [email protected] support ([#571](https://github.com/scaleway/scaleway-cli/pull/571))
1225+
* feat: add [email protected] support ([#565](https://github.com/scaleway/scaleway-cli/pull/565))
1226+
* feat: add [email protected] support ([#566](https://github.com/scaleway/scaleway-cli/pull/566))
1227+
* feat: add [email protected] support ([#572](https://github.com/scaleway/scaleway-cli/pull/572))
1228+
* feat: drop freebsd and netbsd support for go1.12+ ([#570](https://github.com/scaleway/scaleway-cli/pull/570))
1229+
* doc: add reference to Chocolatey package ([#551](https://github.com/scaleway/scaleway-cli/pull/551))
1230+
* doc: remove brew tap installation instructions ([#560](https://github.com/scaleway/scaleway-cli/pull/560))
1231+
* doc: update to new instances and images ([#569](https://github.com/scaleway/scaleway-cli/pull/569))
1232+
* test: fix integration tests ([#568](https://github.com/scaleway/scaleway-cli/pull/568))
1233+
1234+
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.19...v1.20)
12181235

12191236
### v1.19 (2019-03-29)
12201237

pkg/scwversion/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "fmt"
44

55
var (
66
// VERSION represents the semver version of the package
7-
VERSION = "v1.19+dev"
7+
VERSION = "v1.20+dev"
88

99
// GITCOMMIT represents the git commit hash of the package, it is configured at build time
1010
GITCOMMIT string

0 commit comments

Comments
 (0)