Skip to content

Commit

Permalink
Increase major version
Browse files Browse the repository at this point in the history
  • Loading branch information
twpayne committed Jan 22, 2024
1 parent ff15574 commit 61ab046
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/twpayne/go-vfs/v4
module github.com/twpayne/go-vfs/v5

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion osfs_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package vfs_test

import "github.com/twpayne/go-vfs/v4"
import "github.com/twpayne/go-vfs/v5"

var _ vfs.FS = vfs.OSFS
2 changes: 1 addition & 1 deletion pathfs_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package vfs_test

import "github.com/twpayne/go-vfs/v4"
import "github.com/twpayne/go-vfs/v5"

var _ vfs.FS = &vfs.PathFS{}
2 changes: 1 addition & 1 deletion readonlyfs_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package vfs_test

import "github.com/twpayne/go-vfs/v4"
import "github.com/twpayne/go-vfs/v5"

var _ vfs.FS = &vfs.ReadOnlyFS{}
4 changes: 2 additions & 2 deletions vfst/contains_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

"github.com/alecthomas/assert/v2"

vfs "github.com/twpayne/go-vfs/v4"
"github.com/twpayne/go-vfs/v4/vfst"
vfs "github.com/twpayne/go-vfs/v5"
"github.com/twpayne/go-vfs/v5/vfst"
)

func TestContains(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion vfst/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package vfst_test
import (
"testing"

"github.com/twpayne/go-vfs/v4/vfst"
"github.com/twpayne/go-vfs/v5/vfst"
)

func ExampleNewTestFS_complex() {
Expand Down
4 changes: 2 additions & 2 deletions vfst/fs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/alecthomas/assert/v2"

vfs "github.com/twpayne/go-vfs/v4"
"github.com/twpayne/go-vfs/v4/vfst"
vfs "github.com/twpayne/go-vfs/v5"
"github.com/twpayne/go-vfs/v5/vfst"
)

func TestWalk(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion vfst/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"syscall"
"testing"

vfs "github.com/twpayne/go-vfs/v4"
vfs "github.com/twpayne/go-vfs/v5"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion vfst/test_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io/fs"
"testing"

"github.com/twpayne/go-vfs/v4"
"github.com/twpayne/go-vfs/v5"
)

// PermEqual returns if perm1 and perm2 represent the same permissions. On
Expand Down
2 changes: 1 addition & 1 deletion vfst/testfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package vfst
import (
"os"

vfs "github.com/twpayne/go-vfs/v4"
vfs "github.com/twpayne/go-vfs/v5"
)

// A TestFS is a virtual filesystem based in a temporary directory.
Expand Down
2 changes: 1 addition & 1 deletion vfst/vfst.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strconv"
"testing"

vfs "github.com/twpayne/go-vfs/v4"
vfs "github.com/twpayne/go-vfs/v5"
)

var umask fs.FileMode
Expand Down
4 changes: 2 additions & 2 deletions vfst/vfst_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (

"github.com/alecthomas/assert/v2"

vfs "github.com/twpayne/go-vfs/v4"
"github.com/twpayne/go-vfs/v4/vfst"
vfs "github.com/twpayne/go-vfs/v5"
"github.com/twpayne/go-vfs/v5/vfst"
)

func TestBuilderBuild(t *testing.T) {
Expand Down

0 comments on commit 61ab046

Please sign in to comment.