Skip to content

Commit d2d477e

Browse files
author
Dean Karn
authored
Merge pull request #3 from go-playground/go-modules
update to go modules
2 parents 777788a + 640b9af commit d2d477e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## ansi
2-
![Project status](https://img.shields.io/badge/version-2.1.0-green.svg)
2+
![Project status](https://img.shields.io/badge/version-3.0.0-green.svg)
33
[![GoDoc](https://godoc.org/github.com/go-playground/ansi?status.svg)](https://godoc.org/github.com/go-playground/ansi)
44
![License](https://img.shields.io/dub/l/vibe-d.svg)
55

@@ -16,7 +16,7 @@ Installation
1616
Use go get
1717

1818
```shell
19-
go get -u github.com/go-playground/ansi
19+
go get -u github.com/go-playground/ansi/v3
2020
```
2121

2222
Usage
@@ -27,7 +27,7 @@ package main
2727
import (
2828
"fmt"
2929

30-
"github.com/go-playground/ansi"
30+
"github.com/go-playground/ansi/v3"
3131
)
3232

3333
// make your own combinations if you want

examples/main.go renamed to _examples/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/go-playground/ansi"
6+
"github.com/go-playground/ansi/v3"
77
)
88

99
// make your own combinations if you want

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/go-playground/ansi/v3
2+
3+
go 1.13

0 commit comments

Comments
 (0)