Skip to content

Commit 7a2bf5f

Browse files
committed
fix: link-in migration 10
1 parent b8d3022 commit 7a2bf5f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ ipfs repo version | go-ipfs versions
4545
5 | 0.4.6 - 0.4.10
4646
6 | 0.4.11 - 0.4.15
4747
7 | 0.4.16 - 0.4.23
48-
8 | 0.5.0 - current
49-
9 | 0.5.0 - current
48+
8 | 0.5.0 - 0.6.0
49+
9 | 0.5.0 - 0.6.0
50+
10 | 0.6.0 - current
5051

5152
### How to Run Migrations
5253

main.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ import (
1818
mg6 "github.com/ipfs/fs-repo-migrations/ipfs-6-to-7/migration"
1919
mg7 "github.com/ipfs/fs-repo-migrations/ipfs-7-to-8/migration"
2020
mg8 "github.com/ipfs/fs-repo-migrations/ipfs-8-to-9/migration"
21+
mg9 "github.com/ipfs/fs-repo-migrations/ipfs-9-to-10/migration"
2122
mfsr "github.com/ipfs/fs-repo-migrations/mfsr"
2223
)
2324

24-
var CurrentVersion = 9
25+
var CurrentVersion = 10
2526

2627
var migrations = []gomigrate.Migration{
2728
&mg0.Migration{},
@@ -33,6 +34,7 @@ var migrations = []gomigrate.Migration{
3334
&mg6.Migration{},
3435
&mg7.Migration{},
3536
&mg8.Migration{},
37+
&mg9.Migration{},
3638
}
3739

3840
func GetIpfsDir() (string, error) {

sharness/t0030-simple-migration.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test_expect_success "'fs-repo-migrations -v' works" '
1313
'
1414

1515
test_expect_success "'fs-repo-migrations -v' output looks good" '
16-
echo "9" >expected &&
16+
echo "10" >expected &&
1717
test_cmp expected actual
1818
'
1919

@@ -30,7 +30,7 @@ test_expect_success "'fs-repo-migrations -v' works" '
3030
'
3131

3232
test_expect_success "'fs-repo-migrations -v' output looks good" '
33-
echo "9" >expected &&
33+
echo "10" >expected &&
3434
test_cmp expected actual
3535
'
3636

0 commit comments

Comments
 (0)