File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
2627var 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
3840func GetIpfsDir () (string , error ) {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ test_expect_success "'fs-repo-migrations -v' works" '
1313'
1414
1515test_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
3232test_expect_success " 'fs-repo-migrations -v' output looks good" '
33- echo "9 " >expected &&
33+ echo "10 " >expected &&
3434 test_cmp expected actual
3535'
3636
You can’t perform that action at this time.
0 commit comments