Skip to content

Commit

Permalink
version bump: v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Aug 1, 2019
1 parent 76d147f commit 694c339
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions current.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package here

import "path/filepath"

var root = func() string {
b, _ := run("go", "env", "GOMOD")
return filepath.Dir(string(b))
}()

func Current() (Info, error) {
return Dir(root)
}
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package here

// Version of here
const Version = "v0.2.1"
const Version = "v0.2.2"

0 comments on commit 694c339

Please sign in to comment.