Skip to content

Commit 425453e

Browse files
committed
bump v4 version
Signed-off-by: Máximo Cuadros <[email protected]>
1 parent eeb2866 commit 425453e

23 files changed

+52
-53
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
language: go
22

33
go:
4-
- 1.8
5-
- tip
4+
- 1.9
65

7-
go_import_path: gopkg.in/src-d/go-billy.v3
6+
go_import_path: gopkg.in/src-d/go-billy.v4
87

98
matrix:
109
allow_failures:

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# go-billy [![GoDoc](https://godoc.org/gopkg.in/src-d/go-billy.v3?status.svg)](https://godoc.org/gopkg.in/src-d/go-billy.v3) [![Build Status](https://travis-ci.org/src-d/go-billy.svg)](https://travis-ci.org/src-d/go-billy) [![Build status](https://ci.appveyor.com/api/projects/status/vx2qn6vlakbi724t?svg=true)](https://ci.appveyor.com/project/mcuadros/go-billy) [![codecov](https://codecov.io/gh/src-d/go-billy/branch/master/graph/badge.svg)](https://codecov.io/gh/src-d/go-billy)
1+
# go-billy [![GoDoc](https://godoc.org/gopkg.in/src-d/go-billy.v4?status.svg)](https://godoc.org/gopkg.in/src-d/go-billy.v4) [![Build Status](https://travis-ci.org/src-d/go-billy.svg)](https://travis-ci.org/src-d/go-billy) [![Build status](https://ci.appveyor.com/api/projects/status/vx2qn6vlakbi724t?svg=true)](https://ci.appveyor.com/project/mcuadros/go-billy) [![codecov](https://codecov.io/gh/src-d/go-billy/branch/master/graph/badge.svg)](https://codecov.io/gh/src-d/go-billy)
22

33
The missing interface filesystem abstraction for Go.
44
Billy implements an interface based on the `os` standard library, allowing to develop applications without dependency on the underlying storage. Make virtually free implement an mocks and testing over filesystem operations.
@@ -8,14 +8,9 @@ Billy was born as part of [src-d/go-git](https://github.com/src-d/go-git) projec
88
## Installation
99

1010
```go
11-
go get -u gopkg.in/src-d/go-billy.v3/...
11+
go get -u gopkg.in/src-d/go-billy.v4/...
1212
```
1313

14-
## Why billy?
15-
16-
The library billy deals with storage systems and Billy is the name of a well-known, IKEA
17-
bookcase. That's it.
18-
1914
## Usage
2015

2116
Billy exposes filesystems using the
@@ -67,6 +62,11 @@ func LoadToMemory(origin billy.Filesystem, path string) (*memory.Memory, error)
6762
}
6863
```
6964

65+
## Why billy?
66+
67+
The library billy deals with storage systems and Billy is the name of a well-known, IKEA
68+
bookcase. That's it.
69+
7070
## License
7171

72-
MIT, see [LICENSE](LICENSE)
72+
Apache License Version 2.0, see [LICENSE](LICENSE)

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "{build}"
22
platform: x64
33

4-
clone_folder: c:\gopath\src\gopkg.in\src-d\go-billy.v3
4+
clone_folder: c:\gopath\src\gopkg.in\src-d\go-billy.v4
55

66
environment:
77
GOPATH: c:\gopath
@@ -12,4 +12,4 @@ install:
1212
- go get -v -t ./...
1313

1414
build_script:
15-
- go test -v ./...
15+
- go test -v ./...

helper/chroot/chroot.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"path/filepath"
66
"strings"
77

8-
"gopkg.in/src-d/go-billy.v3"
9-
"gopkg.in/src-d/go-billy.v3/helper/polyfill"
8+
"gopkg.in/src-d/go-billy.v4"
9+
"gopkg.in/src-d/go-billy.v4/helper/polyfill"
1010
)
1111

1212
// ChrootHelper is a helper to implement billy.Chroot.

helper/chroot/chroot_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"path/filepath"
66
"testing"
77

8-
"gopkg.in/src-d/go-billy.v3"
9-
"gopkg.in/src-d/go-billy.v3/test"
8+
"gopkg.in/src-d/go-billy.v4"
9+
"gopkg.in/src-d/go-billy.v4/test"
1010

1111
. "gopkg.in/check.v1"
1212
)

helper/mount/mount.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88

99
"fmt"
1010

11-
"gopkg.in/src-d/go-billy.v3"
12-
"gopkg.in/src-d/go-billy.v3/helper/polyfill"
11+
"gopkg.in/src-d/go-billy.v4"
12+
"gopkg.in/src-d/go-billy.v4/helper/polyfill"
1313
)
1414

1515
var separator = string(filepath.Separator)

helper/mount/mount_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"path/filepath"
66
"testing"
77

8-
"gopkg.in/src-d/go-billy.v3"
9-
"gopkg.in/src-d/go-billy.v3/memfs"
10-
"gopkg.in/src-d/go-billy.v3/test"
11-
"gopkg.in/src-d/go-billy.v3/util"
8+
"gopkg.in/src-d/go-billy.v4"
9+
"gopkg.in/src-d/go-billy.v4/memfs"
10+
"gopkg.in/src-d/go-billy.v4/test"
11+
"gopkg.in/src-d/go-billy.v4/util"
1212

1313
. "gopkg.in/check.v1"
1414
)

helper/polyfill/polyfill.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"path/filepath"
66

7-
"gopkg.in/src-d/go-billy.v3"
7+
"gopkg.in/src-d/go-billy.v4"
88
)
99

1010
// Polyfill is a helper that implements all missing method from billy.Filesystem.

helper/polyfill/polyfill_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"path/filepath"
55
"testing"
66

7-
"gopkg.in/src-d/go-billy.v3"
8-
"gopkg.in/src-d/go-billy.v3/test"
7+
"gopkg.in/src-d/go-billy.v4"
8+
"gopkg.in/src-d/go-billy.v4/test"
99

1010
. "gopkg.in/check.v1"
1111
)

helper/temporal/temporal.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package temporal
22

33
import (
4-
"gopkg.in/src-d/go-billy.v3"
5-
"gopkg.in/src-d/go-billy.v3/util"
4+
"gopkg.in/src-d/go-billy.v4"
5+
"gopkg.in/src-d/go-billy.v4/util"
66
)
77

88
// Temporal is a helper that implements billy.TempFile over any filesystem.

0 commit comments

Comments
 (0)