File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
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.16 /scw-darwin-amd64" -O /usr/local/bin/scw
109+ wget " https://github.com/scaleway/scaleway-cli/releases/download/v1.17 /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.16 /scw_1.16_${ARCH} .deb" -O /tmp/scw.deb
120+ wget " https://github.com/scaleway/scaleway-cli/releases/download/v1.17 /scw_1.16_${ARCH} .deb" -O /tmp/scw.deb
121121dpkg -i /tmp/scw.deb && rm -f /tmp/scw.deb
122122
123123# test
@@ -1212,12 +1212,14 @@ $ scw inspect myserver | jq '.[0].public_ip.address'
12121212
12131213## Changelog
12141214
1215- ### v1.16+dev (unreleased )
1215+ ### v1.17 (2018-07-02 )
12161216
1217- * Fix: it is now possible to ` scw inspect ` snapshots
1218- * Fix: add region details in cache for snapshots, images, bootscripts and volumes.
1217+ * Fix: it is now possible to ` scw inspect ` snapshots [ #510 ] ( https://github.com/scaleway/scaleway-cli/issues/510 )
1218+ * Fix: add region details in cache for snapshots, images, bootscripts and volumes [ #510 ] ( https://github.com/scaleway/scaleway-cli/issues/510 )
1219+ * Fix: ` scw attach ` works again [ #508 ] ( https://github.com/scaleway/scaleway-cli/issues/508 )
1220+ * Fix unittests
12191221
1220- View full [ commits list] ( https://github.com/scaleway/scaleway-cli/compare/v1.16...master )
1222+ View full [ commits list] ( https://github.com/scaleway/scaleway-cli/compare/v1.16...v1.17 )
12211223
12221224### v1.16 (2018-04-20)
12231225
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.16+dev "
7+ VERSION = "v1.17 "
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