Skip to content

Commit 4203b29

Browse files
authored
Merge pull request #136 from vim-volt/devel
Release v0.2.1
2 parents 6f71047 + a2d28a5 commit 4203b29

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.travis.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
language: go
22

3-
go:
4-
- 1.9.1
5-
- tip
3+
matrix:
4+
include:
5+
- os: linux
6+
go: 1.9.1
7+
- os: linux
8+
go: tip
9+
- os: osx
10+
osx_image: xcode8.3
11+
go: 1.9.1
12+
- os: osx
13+
osx_image: xcode8.3
14+
go: tip
615

716
script:
817
- go vet -v ./...

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88
)
99

10-
var voltVersion string = "v0.2.0"
10+
var voltVersion string = "v0.2.1"
1111

1212
func Version(args []string) int {
1313
fmt.Printf("volt version: %s\n", voltVersion)

fileutil/copyfile_generic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
1+
// +build !linux
22

33
package fileutil
44

fileutil/copyfile_unix.go renamed to fileutil/copyfile_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
1+
// +build linux
22

33
package fileutil
44

0 commit comments

Comments
 (0)