Skip to content

Commit e9f834c

Browse files
Release V1.18 (#543)
Release v1.18
1 parent 29c3df2 commit e9f834c

File tree

2 files changed

+42
-30
lines changed

2 files changed

+42
-30
lines changed

README.md

Lines changed: 41 additions & 29 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.17/scw-darwin-amd64" -O /usr/local/bin/scw
109+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.18/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.17/scw_1.17_${ARCH}.deb" -O /tmp/scw.deb
120+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.18/scw_1.17_${ARCH}.deb" -O /tmp/scw.deb
121121
dpkg -i /tmp/scw.deb && rm -f /tmp/scw.deb
122122

123123
# test
@@ -327,14 +327,16 @@ Create a new server but do not start it.
327327

328328
Options:
329329

330-
--bootscript="" Assign a bootscript
330+
--boot-type=auto Choose between 'local' and 'bootscript' boot
331+
--bootscript="" Assign a bootscript
331332
--commercial-type=X64-2GB Create a server with specific commercial-type C1, C2[S|M|L], X64-[2|4|8|15|30|60|120]GB, ARM64-[2|4|8]GB
332-
-e, --env="" Provide metadata tags passed to initrd (i.e., boot=rescue INITRD_DEBUG=1)
333-
-h, --help=false Print usage
334-
--ip-address=dynamic Assign a reserved public IP, a 'dynamic' one or 'none'
335-
--name="" Assign a name
336-
--tmp-ssh-key=false Access your server without uploading your SSH key to your account
337-
-v, --volume="" Attach additional volume (i.e., 50G)
333+
-e, --env="" Provide metadata tags passed to initrd (i.e., boot=rescue INITRD_DEBUG=1)
334+
-h, --help=false Print usage
335+
--ip-address=dynamic Assign a reserved public IP, a 'dynamic' one or 'none'
336+
--ipv6=false Enable IPV6
337+
--name="" Assign a name
338+
--tmp-ssh-key=false Access your server without uploading your SSH key to your account
339+
-v, --volume="" Attach additional volume (i.e., 50G)
338340

339341
Examples:
340342

@@ -722,24 +724,25 @@ Run a command in a new server.
722724

723725
Options:
724726

725-
-a, --attach=false Attach to serial console
726-
--bootscript="" Assign a bootscript
727+
-a, --attach=false Attach to serial console
728+
--boot-type=auto Choose between 'local' and 'bootscript' boot
729+
--bootscript="" Assign a bootscript
727730
--commercial-type=X64-2GB Start a server with specific commercial-type C1, C2[S|M|L], X64-[2|4|8|15|30|60|120]GB, ARM64-[2|4|8]GB
728-
-d, --detach=false Run server in background and print server ID
729-
-e, --env="" Provide metadata tags passed to initrd (i.e., boot=rescue INITRD_DEBUG=1)
730-
-g, --gateway="" Use a SSH gateway
731-
-h, --help=false Print usage
732-
--ip-address="" Assign a reserved public IP, a 'dynamic' one or 'none' (default to 'none' if gateway specified, 'dynamic' otherwise)
733-
--ipv6=false Enable IPV6
734-
--name="" Assign a name
735-
-p, --port=22 Specify SSH port
736-
--rm=false Automatically remove the server when it exits
737-
--show-boot=false Allows to show the boot
738-
-T, --timeout=0 Set timeout value to seconds
739-
--tmp-ssh-key=false Access your server without uploading your SSH key to your account
740-
-u, --userdata="" Start a server with userdata predefined
741-
--user=root Specify SSH User
742-
-v, --volume="" Attach additional volume (i.e., 50G)
731+
-d, --detach=false Run server in background and print server ID
732+
-e, --env="" Provide metadata tags passed to initrd (i.e., boot=rescue INITRD_DEBUG=1)
733+
-g, --gateway="" Use a SSH gateway
734+
-h, --help=false Print usage
735+
--ip-address="" Assign a reserved public IP, a 'dynamic' one or 'none' (default to 'none' if gateway specified, 'dynamic' otherwise)
736+
--ipv6=false Enable IPV6
737+
--name="" Assign a name
738+
-p, --port=22 Specify SSH port
739+
--rm=false Automatically remove the server when it exits
740+
--show-boot=false Allows to show the boot
741+
-T, --timeout=0 Set timeout value to seconds
742+
--tmp-ssh-key=false Access your server without uploading your SSH key to your account
743+
-u, --userdata="" Start a server with userdata predefined
744+
--user=root Specify SSH User
745+
-v, --volume="" Attach additional volume (i.e., 50G)
743746

744747
Examples:
745748

@@ -1215,13 +1218,22 @@ $ scw inspect myserver | jq '.[0].public_ip.address'
12151218

12161219
## Changelog
12171220

1218-
### v1.17+dev (unreleased)
1221+
### v1.18+dev (unreleased)
1222+
1223+
* This is the current development version. Update below with your changes. Remove this line when releasing the package.
1224+
1225+
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.18...master)
1226+
1227+
### v1.18 (2019-03-04)
12191228

12201229
* Add the ability to use an arbitrary config file using `-c`,`--config` option.
12211230
* Add the ability to specify a token and organiationId from the environnement using `SCW_TOKEN` and `SCW_ORGANIZATION` variables.
1222-
* This is the current development version. Update below with your changes. Remove this line when releasing the package.
1231+
* Add security group stateful flag.
1232+
* Add security group default outbound/inbound policy.
1233+
* Fix cli version link (auto update).
1234+
* Add compute boottype flag.
12231235

1224-
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.17...master)
1236+
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.17...v1.18)
12251237

12261238
### v1.17 (2018-07-02)
12271239

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.17+dev"
7+
VERSION = "v1.18"
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)