Skip to content

Commit a281eca

Browse files
authored
Merge pull request #112 from ipfs/feat/10-11-datastore-pins
Migrate ipfs v0.7.0 to v0.8.0
2 parents 67611c5 + 1024b44 commit a281eca

File tree

4,138 files changed

+1330010
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,138 files changed

+1330010
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
fs-repo-migrations
22
ipfs-0-to-1/ipfs-0-to-1
33
ipfs-1-to-2/ipfs-1-to-2
4+
ipfs-10-to-11/ipfs-10-to-11
45
sharness/bin/*
6+
*~

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ os:
88
language: go
99

1010
go:
11-
- 1.13.x
11+
- 1.14.x
1212

1313
env:
1414
- TEST_VERBOSE=1

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ test: test_go sharness
88

99
test_go:
1010
go build -mod=vendor
11-
go test -mod=vendor ./...
11+
go test -mod=vendor $(shell go list ./... | grep -v /gx/)
1212

1313
sharness:
1414
make -C sharness

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/ipfs/fs-repo-migrations
22

3-
go 1.13
3+
go 1.14
44

55
require golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa

ipfs-10-to-11/Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
OUTPUT ?= ./
2+
3+
.PHONY: all clean
4+
5+
all:
6+
go build -o $(OUTPUT)
7+
8+
clean:
9+
rm -f ipfs-10-to-11

ipfs-10-to-11/_vendor/bazil.org/fuse/.gitattributes

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ipfs-10-to-11/_vendor/bazil.org/fuse/.gitignore

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ipfs-10-to-11/_vendor/bazil.org/fuse/LICENSE

Lines changed: 93 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ipfs-10-to-11/_vendor/bazil.org/fuse/README.md

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ipfs-10-to-11/_vendor/bazil.org/fuse/buffer.go

Lines changed: 35 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)