Skip to content

Commit 3284438

Browse files
docs: point README badges and install/import at oasdiff/yaml
The badges (Lint, Test Go, Go Report Card, Latest Tag) and the go get / import examples still referenced the upstream invopop/yaml, so the badges showed the wrong repo and the install instructions pointed at the wrong module. Repoint them to github.com/oasdiff/yaml. Kept the one-line lineage note that this is a fork of invopop/yaml. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent e8b5bc5 commit 3284438

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

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

3-
[![Lint](https://github.com/invopop/yaml/actions/workflows/lint.yaml/badge.svg)](https://github.com/invopop/yaml/actions/workflows/lint.yaml)
4-
[![Test Go](https://github.com/invopop/yaml/actions/workflows/test.yaml/badge.svg)](https://github.com/invopop/yaml/actions/workflows/test.yaml)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/invopop/yaml)](https://goreportcard.com/report/github.com/invopop/yaml)
6-
![Latest Tag](https://img.shields.io/github/v/tag/invopop/yaml)
3+
[![Lint](https://github.com/oasdiff/yaml/actions/workflows/lint.yaml/badge.svg)](https://github.com/oasdiff/yaml/actions/workflows/lint.yaml)
4+
[![Test Go](https://github.com/oasdiff/yaml/actions/workflows/test.yaml/badge.svg)](https://github.com/oasdiff/yaml/actions/workflows/test.yaml)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/oasdiff/yaml)](https://goreportcard.com/report/github.com/oasdiff/yaml)
6+
![Latest Tag](https://img.shields.io/github/v/tag/oasdiff/yaml)
77

88
## Fork
99
This fork is an improved version of the invopop/yaml package, designed to include line and column location information for YAML elements during unmarshalling.
@@ -63,13 +63,13 @@ GOOD:
6363
To install, run:
6464

6565
```
66-
$ go get github.com/invopop/yaml
66+
$ go get github.com/oasdiff/yaml
6767
```
6868

6969
And import using:
7070

7171
```
72-
import "github.com/invopop/yaml"
72+
import "github.com/oasdiff/yaml"
7373
```
7474

7575
Usage is very similar to the JSON library:
@@ -80,7 +80,7 @@ package main
8080
import (
8181
"fmt"
8282

83-
"github.com/invopop/yaml"
83+
"github.com/oasdiff/yaml"
8484
)
8585

8686
type Person struct {
@@ -124,7 +124,7 @@ package main
124124
import (
125125
"fmt"
126126

127-
"github.com/invopop/yaml"
127+
"github.com/oasdiff/yaml"
128128
)
129129

130130
func main() {

0 commit comments

Comments
 (0)