File tree Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 3
3
sudo : required
4
4
language : go
5
5
dist : trusty
6
- osx_image : xcode9
6
+ osx_image : xcode10.1
7
7
os :
8
8
- linux
9
9
- osx
10
10
notifications :
11
11
email : false
12
12
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
19
14
addons :
20
15
apt :
21
16
packages :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ VERSION := $(shell grep 'const Version' credentials/version.go | awk -F'"' '{ pr
6
6
all : test
7
7
8
8
deps :
9
- go get -u github.com/golang /lint/golint
9
+ go get -u golang.org/x /lint/golint
10
10
11
11
clean :
12
12
rm -rf bin
Original file line number Diff line number Diff line change 1
1
package credentials
2
2
3
3
// Version holds a string describing the current version
4
- const Version = "0.6.0 "
4
+ const Version = "0.6.1 "
Original file line number Diff line number Diff line change 1
1
package osxkeychain
2
2
3
3
/*
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
6
6
7
7
#include "osxkeychain_darwin.h"
8
8
#include <stdlib.h>
You can’t perform that action at this time.
0 commit comments