Skip to content

Commit c54911b

Browse files
author
Jérôme Quéré
committed
Release v1.19
1 parent 942297b commit c54911b

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

README.md

Lines changed: 10 additions & 4 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.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
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.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
121121
dpkg -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

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

0 commit comments

Comments
 (0)