File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ mkdir -p /usr/local/bin
106106mv /usr/local/bin/scw /tmp/scw.old
107107
108108# get latest release
109- wget " https://github.com/scaleway/scaleway-cli/releases/download/v1.18 /scw-darwin-amd64" -O /usr/local/bin/scw
109+ wget " https://github.com/scaleway/scaleway-cli/releases/download/v1.19 /scw-darwin-amd64" -O /usr/local/bin/scw
110110
111111# test
112112scw version
@@ -117,7 +117,7 @@ Install the latest release on Linux:
117117``` bash
118118# get latest release
119119export ARCH=amd64 # can be 'i386', 'amd64' or 'armhf'
120- wget " https://github.com/scaleway/scaleway-cli/releases/download/v1.18 /scw_1.17_ ${ARCH} .deb" -O /tmp/scw.deb
120+ wget " https://github.com/scaleway/scaleway-cli/releases/download/v1.19 /scw_1.19_ ${ARCH} .deb" -O /tmp/scw.deb
121121dpkg -i /tmp/scw.deb && rm -f /tmp/scw.deb
122122
123123# test
@@ -1218,11 +1218,17 @@ $ scw inspect myserver | jq '.[0].public_ip.address'
12181218
12191219## Changelog
12201220
1221- ### v1.18 +dev (unreleased)
1221+ ### v1.19 +dev (unreleased)
12221222
12231223* This is the current development version. Update below with your changes. Remove this line when releasing the package.
12241224
1225- View full [ commits list] ( https://github.com/scaleway/scaleway-cli/compare/v1.18...master )
1225+ View full [ commits list] ( https://github.com/scaleway/scaleway-cli/compare/v1.19...master )
1226+
1227+ ### v1.19 (2019-03-29)
1228+
1229+ * Fix: create servers volumes algo
1230+
1231+ View full [ commits list] ( https://github.com/scaleway/scaleway-cli/compare/v1.18...v1.19 )
12261232
12271233### v1.18 (2019-03-04)
12281234
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import "fmt"
44
55var (
66 // VERSION represents the semver version of the package
7- VERSION = "v1.18+dev "
7+ VERSION = "v1.19 "
88
99 // GITCOMMIT represents the git commit hash of the package, it is configured at build time
1010 GITCOMMIT string
You can’t perform that action at this time.
0 commit comments