Skip to content

Commit d403aa7

Browse files
authored
moved to github
1 parent a71d662 commit d403aa7

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
22
[![Go v1.9](https://img.shields.io/badge/Go-v1.9-green.svg)](http://golang.org)
3-
[![Go Report Card](https://goreportcard.com/badge/bitbucket.org/gotamer/version)](https://goreportcard.com/report/bitbucket.org/gotamer/version)
4-
[![GoDoc](https://godoc.org/bitbucket.org/gotamer/version?status.svg)](https://godoc.org/bitbucket.org/gotamer/version)
3+
[![Go Report Card](https://goreportcard.com/badge/bitbucket.org/gotamer/version)](https://goreportcard.com/report/github.com/gotamer/version)
4+
[![GoDoc](https://godoc.org/github.com/gotamer/version?status.svg)](https://godoc.org/github.com/gotamer/version)
55

66

77
# Package version gets version information from git
88

9-
It runs `git describe --always --long --tags --dirty` and formats that info in to a file called version.go
9+
It runs `git describe --always --long --tags --dirty` and formats that info in to a file called version_info.go (see output below)
1010

1111
```go
1212
package main
1313

14-
import "bitbucket.org/gotamer/version"
14+
import "github.com/gotamer/version"
1515

1616
func init() {
1717
if err := version.Run(); err != nil {
@@ -21,6 +21,7 @@ func init() {
2121
```
2222

2323
### cat version_info.go
24+
2425
```go
2526
package main
2627

@@ -39,4 +40,4 @@ const VerGit = "g1051a2c"
3940
//VarTag is the Tag version from Git.
4041
const VerTag = "0.2"
4142

42-
```
43+
```

0 commit comments

Comments
 (0)