Skip to content

Commit 0087e98

Browse files
author
Julien Castets
committed
Release v1.17
1 parent 7b5f7a6 commit 0087e98

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ mkdir -p /usr/local/bin
106106
mv /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
112112
scw version
@@ -117,7 +117,7 @@ Install the latest release on Linux:
117117
```bash
118118
# get latest release
119119
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
121121
dpkg -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

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.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

0 commit comments

Comments
 (0)