Skip to content

Commit 5ed90b3

Browse files
committed
v1.7.1
1 parent 9d52e12 commit 5ed90b3

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.goxc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"BuildConstraints": "darwin linux windows freebsd netbsd",
1818
"ResourcesExclude": "*.go .goxc-temp",
1919
"MainDirsExclude": "vendor,Godeps,testdata",
20-
"PackageVersion": "1.7.0",
20+
"PackageVersion": "1.7.1",
2121
"TaskSettings": {
2222
"bintray": {
2323
"downloadspage": "bintray.md",

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ mkdir -p /usr/local/bin
9999
mv /usr/local/bin/scw /tmp/scw.old
100100

101101
# get latest release
102-
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.7.0/scw_1.7.0_darwin_amd64.zip" -O /tmp/scw.zip
102+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.7.1/scw_1.7.1_darwin_amd64.zip" -O /tmp/scw.zip
103103
unzip /tmp/scw.zip \*/scw -d /tmp
104104
mv /tmp/scw_*/scw /usr/local/bin
105105
rm -rf /tmp/scw.zip /tmp/scw_*_darwin_amd64
@@ -113,7 +113,7 @@ Install the latest release on Linux:
113113
```bash
114114
# get latest release
115115
export ARCH=amd64 # can be 'i386', 'amd64' or 'armhf'
116-
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.7.0/scw_1.7.0_${ARCH}.deb" -O /tmp/scw.deb
116+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.7.1/scw_1.7.1_${ARCH}.deb" -O /tmp/scw.deb
117117
dpkg -i /tmp/scw.deb && rm -f /tmp/scw.deb
118118

119119
# test
@@ -1155,13 +1155,12 @@ $ scw inspect myserver | jq '.[0].public_ip.address'
11551155

11561156
## Changelog
11571157

1158-
### master (unreleased)
1158+
### v1.7.1 (2016-01-29)
11591159

1160-
* Add `SCW_NOCHECKVERSION=1` env var to disable the check of scw version
1161-
* Add User-Agent with scw version ([#269](https://github.com/scaleway/scaleway-cli/issues/269))
1162-
* Add daily check to update scw ([#268](https://github.com/scaleway/scaleway-cli/issues/268))
1160+
* Configure User-Agent ([#269](https://github.com/scaleway/scaleway-cli/issues/269))
1161+
* Daily check for new scw version ([#268](https://github.com/scaleway/scaleway-cli/issues/268))
11631162

1164-
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.7.0...master)
1163+
View full [commits list](https://github.com/scaleway/scaleway-cli/compare/v1.7.0...v1.7.1)
11651164

11661165
### v1.7.0 (2016-01-27)
11671166

pkg/scwversion/version.go

+1-1
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, it is configured at build time
7-
VERSION = "v1.7.0"
7+
VERSION = "v1.7.1"
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)