@cryptotaxi247 / kubo / commits / 710d3208a

feat: update upgrade repo from 12 to 13

Fixes: #9292

Jorropo committed Dec 12, 2022 at 21:50 UTC 710d3208af91e0a9502f61f40ce88a43857f42a5
2 files changed +2 -2
repo/fsrepo/fsrepo.go
+1 -1
@@ -36,7 +36,7 @@ const LockFile = "repo.lock"
36 var log = logging.Logger("fsrepo")
37
38 // RepoVersion is the version number that we are currently expecting to see
39 -var RepoVersion = 12
39 +var RepoVersion = 13
40
41 var migrationInstructions = `See https://github.com/ipfs/fs-repo-migrations/blob/master/run.md
42 Sorry for the inconvenience. In the future, these will run automatically.`
repo/fsrepo/migrations/fetcher.go
+1 -1
@@ -11,7 +11,7 @@ import (
11
12 const (
13 // Current distribution to fetch migrations from
14 - CurrentIpfsDist = "/ipfs/QmdaCHYBDHEhXCMoynH5UcohEay6m1XayZCcxWZzKAHNVN" // fs-repo-11-to-12 v1.0.2
14 + CurrentIpfsDist = "/ipfs/Qmf4yftD4LuMo8JMNPqqw3BtUwYd2VkXMiAThuPE6usrbQ" // fs-repo-12-to-13 v1.0.0
15 // Latest distribution path. Default for fetchers.
16 LatestIpfsDist = "/ipns/dist.ipfs.tech"
17