Skip to content

Commit 860b7fe

Browse files
committed
Add /v3 to module name
1 parent fb3a1f2 commit 860b7fe

7 files changed

+9
-9
lines changed

.github/workflows/go.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Check out code into the Go module directory
2929
uses: actions/checkout@v2
3030
with:
31-
path: ${{ github.workspace }}/go/src/github.com/zillow/go-yaml
31+
path: ${{ github.workspace }}/go/src/github.com/zillow/go-yaml/v3
3232
- name: Set up Go ${{ matrix.go }}
3333
if: matrix.go != 'tip'
3434
uses: actions/setup-go@v2
@@ -56,6 +56,6 @@ jobs:
5656
echo "$GOROOT/bin" >> $GITHUB_PATH
5757
- run: go version
5858
- run: go get -t ./...
59-
working-directory: ${{ github.workspace }}/go/src/github.com/zillow/go-yaml
59+
working-directory: ${{ github.workspace }}/go/src/github.com/zillow/go-yaml/v3
6060
- run: go test .
61-
working-directory: ${{ github.workspace }}/go/src/github.com/zillow/go-yaml
61+
working-directory: ${{ github.workspace }}/go/src/github.com/zillow/go-yaml/v3

decode_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"strings"
2626
"time"
2727

28-
"github.com/zillow/go-yaml"
28+
"github.com/zillow/go-yaml/v3"
2929
. "gopkg.in/check.v1"
3030
)
3131

encode_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"net"
2727
"os"
2828

29-
"github.com/zillow/go-yaml"
29+
"github.com/zillow/go-yaml/v3"
3030
. "gopkg.in/check.v1"
3131
)
3232

example_embedded_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"fmt"
2020
"log"
2121

22-
"github.com/zillow/go-yaml"
22+
"github.com/zillow/go-yaml/v3"
2323
)
2424

2525
// An example showing how to unmarshal embedded

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module "github.com/zillow/go-yaml"
1+
module "github.com/zillow/go-yaml/v3"
22

33
require (
44
"gopkg.in/check.v1" v0.0.0-20161208181325-20d25e280405

limit_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"strings"
55
"testing"
66

7-
"github.com/zillow/go-yaml"
7+
"github.com/zillow/go-yaml/v3"
88
. "gopkg.in/check.v1"
99
)
1010

node_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"io"
2424
"strings"
2525

26-
"github.com/zillow/go-yaml"
26+
"github.com/zillow/go-yaml/v3"
2727
. "gopkg.in/check.v1"
2828
)
2929

0 commit comments

Comments
 (0)