Skip to content

Commit 105d6c2

Browse files
committed
refer to kubernetes-sigs/yaml and sigs.k8s.io/yaml in readme
instead of ghodss/yaml Signed-off-by: Andrew Lavery <[email protected]>
1 parent 68106da commit 105d6c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# YAML marshaling and unmarshaling support for Go
22

3-
[![Build Status](https://travis-ci.org/ghodss/yaml.svg)](https://travis-ci.org/ghodss/yaml)
3+
[![Build Status](https://travis-ci.org/kubernetes-sigs/yaml.svg)](https://travis-ci.org/kubernetes-sigs/yaml)
44

55
## Introduction
66

@@ -32,13 +32,13 @@ GOOD:
3232
To install, run:
3333

3434
```
35-
$ go get github.com/ghodss/yaml
35+
$ go get sigs.k8s.io/yaml
3636
```
3737

3838
And import using:
3939

4040
```
41-
import "github.com/ghodss/yaml"
41+
import "sigs.k8s.io/yaml"
4242
```
4343

4444
Usage is very similar to the JSON library:
@@ -49,7 +49,7 @@ package main
4949
import (
5050
"fmt"
5151

52-
"github.com/ghodss/yaml"
52+
"sigs.k8s.io/yaml"
5353
)
5454

5555
type Person struct {
@@ -93,7 +93,7 @@ package main
9393
import (
9494
"fmt"
9595

96-
"github.com/ghodss/yaml"
96+
"sigs.k8s.io/yaml"
9797
)
9898

9999
func main() {

0 commit comments

Comments
 (0)