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
106
106
mv /usr/local/bin/scw /tmp/scw.old
107
107
108
108
# 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
110
110
111
111
# test
112
112
scw version
@@ -117,7 +117,7 @@ Install the latest release on Linux:
117
117
``` bash
118
118
# get latest release
119
119
export 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
121
121
dpkg -i /tmp/scw.deb && rm -f /tmp/scw.deb
122
122
123
123
# test
@@ -1212,12 +1212,14 @@ $ scw inspect myserver | jq '.[0].public_ip.address'
1212
1212
1213
1213
## Changelog
1214
1214
1215
- ### v1.16+dev (unreleased )
1215
+ ### v1.17 (2018-07-02 )
1216
1216
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
1219
1221
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 )
1221
1223
1222
1224
### v1.16 (2018-04-20)
1223
1225
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import "fmt"
4
4
5
5
var (
6
6
// VERSION represents the semver version of the package
7
- VERSION = "v1.16+dev "
7
+ VERSION = "v1.17 "
8
8
9
9
// GITCOMMIT represents the git commit hash of the package, it is configured at build time
10
10
GITCOMMIT string
You can’t perform that action at this time.
0 commit comments