Skip to content

Commit a1a8390

Browse files
authored
Merge pull request #21 from laverya/update-package-paths-in-readme
refer to kubernetes-sigs/yaml and sigs.k8s.io/yaml in readme
2 parents 68106da + ca78b81 commit a1a8390

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
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)
4+
5+
kubernetes-sigs/yaml is a permanent fork of [ghodss/yaml](https://github.com/ghodss/yaml).
46

57
## Introduction
68

@@ -32,13 +34,13 @@ GOOD:
3234
To install, run:
3335

3436
```
35-
$ go get github.com/ghodss/yaml
37+
$ go get sigs.k8s.io/yaml
3638
```
3739

3840
And import using:
3941

4042
```
41-
import "github.com/ghodss/yaml"
43+
import "sigs.k8s.io/yaml"
4244
```
4345

4446
Usage is very similar to the JSON library:
@@ -49,7 +51,7 @@ package main
4951
import (
5052
"fmt"
5153

52-
"github.com/ghodss/yaml"
54+
"sigs.k8s.io/yaml"
5355
)
5456

5557
type Person struct {
@@ -93,7 +95,7 @@ package main
9395
import (
9496
"fmt"
9597

96-
"github.com/ghodss/yaml"
98+
"sigs.k8s.io/yaml"
9799
)
98100

99101
func main() {

0 commit comments

Comments
 (0)