Skip to content

Commit

Permalink
Merge pull request #3 from go-playground/go-modules
Browse files Browse the repository at this point in the history
update to go modules
  • Loading branch information
Dean Karn authored Nov 11, 2019
2 parents 777788a + 640b9af commit d2d477e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## ansi
![Project status](https://img.shields.io/badge/version-2.1.0-green.svg)
![Project status](https://img.shields.io/badge/version-3.0.0-green.svg)
[![GoDoc](https://godoc.org/github.com/go-playground/ansi?status.svg)](https://godoc.org/github.com/go-playground/ansi)
![License](https://img.shields.io/dub/l/vibe-d.svg)

Expand All @@ -16,7 +16,7 @@ Installation
Use go get

```shell
go get -u github.com/go-playground/ansi
go get -u github.com/go-playground/ansi/v3
```

Usage
Expand All @@ -27,7 +27,7 @@ package main
import (
"fmt"

"github.com/go-playground/ansi"
"github.com/go-playground/ansi/v3"
)

// make your own combinations if you want
Expand Down
2 changes: 1 addition & 1 deletion examples/main.go → _examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/go-playground/ansi"
"github.com/go-playground/ansi/v3"
)

// make your own combinations if you want
Expand Down
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/go-playground/ansi/v3

go 1.13

0 comments on commit d2d477e

Please sign in to comment.