Skip to content

Commit df92c83

Browse files
committed
Update Go version to 1.12.x, update XCode version to 10.1, update MacOS minimum supported version to 10.11.
Signed-off-by: Ulrich VACHON <[email protected]>
1 parent 123ba1b commit df92c83

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

.travis.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,14 @@
33
sudo: required
44
language: go
55
dist: trusty
6-
osx_image: xcode9
6+
osx_image: xcode10.1
77
os:
88
- linux
99
- osx
1010
notifications:
1111
email: false
1212
go:
13-
- 1.8.1
14-
before_install:
15-
# work-around for issue https://github.com/travis-ci/travis-ci/issues/6307
16-
# might not be necessary in the future
17-
- command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
18-
- rvm get stable
13+
- 1.12.x
1914
addons:
2015
apt:
2116
packages:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VERSION := $(shell grep 'const Version' credentials/version.go | awk -F'"' '{ pr
66
all: test
77

88
deps:
9-
go get -u github.com/golang/lint/golint
9+
go get -u golang.org/x/lint/golint
1010

1111
clean:
1212
rm -rf bin

credentials/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package credentials
22

33
// Version holds a string describing the current version
4-
const Version = "0.6.0"
4+
const Version = "0.6.1"

osxkeychain/osxkeychain_darwin.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package osxkeychain
22

33
/*
4-
#cgo CFLAGS: -x objective-c -mmacosx-version-min=10.10
5-
#cgo LDFLAGS: -framework Security -framework Foundation -mmacosx-version-min=10.10
4+
#cgo CFLAGS: -x objective-c -mmacosx-version-min=10.11
5+
#cgo LDFLAGS: -framework Security -framework Foundation -mmacosx-version-min=10.11
66
77
#include "osxkeychain_darwin.h"
88
#include <stdlib.h>

0 commit comments

Comments
 (0)