Skip to content

Commit

Permalink
Merge pull request #136 from vim-volt/devel
Browse files Browse the repository at this point in the history
Release v0.2.1
  • Loading branch information
tyru authored Dec 22, 2017
2 parents 6f71047 + a2d28a5 commit 4203b29
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
15 changes: 12 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
language: go

go:
- 1.9.1
- tip
matrix:
include:
- os: linux
go: 1.9.1
- os: linux
go: tip
- os: osx
osx_image: xcode8.3
go: 1.9.1
- os: osx
osx_image: xcode8.3
go: tip

script:
- go vet -v ./...
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strconv"
)

var voltVersion string = "v0.2.0"
var voltVersion string = "v0.2.1"

func Version(args []string) int {
fmt.Printf("volt version: %s\n", voltVersion)
Expand Down
2 changes: 1 addition & 1 deletion fileutil/copyfile_generic.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
// +build !linux

package fileutil

Expand Down
2 changes: 1 addition & 1 deletion fileutil/copyfile_unix.go → fileutil/copyfile_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
// +build linux

package fileutil

Expand Down

0 comments on commit 4203b29

Please sign in to comment.