From a5e177d753b33391dda926f26fec95cf54fada2a Mon Sep 17 00:00:00 2001 From: shawn Date: Sat, 14 Sep 2024 21:02:05 +0800 Subject: [PATCH] feat: update version and cid --- core/corehttp/webui.go | 3 ++- version.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/core/corehttp/webui.go b/core/corehttp/webui.go index 148177b76..3c04216e5 100644 --- a/core/corehttp/webui.go +++ b/core/corehttp/webui.go @@ -1,10 +1,11 @@ package corehttp -const WebUIPath = "/btfs/QmRwt94fr6b3phJThuDMjZUXr6nHxxG61znN3PCukNAxyi" // v3.0.0 +const WebUIPath = "/btfs/QmYkDfKxQDmHdDUvhWZK5t3GvoqeKokb5wkcrmZdnuUqRS" // v3.1.0 // this is a list of all past webUI paths. var WebUIPaths = []string{ WebUIPath, + "/btfs/QmRwt94fr6b3phJThuDMjZUXr6nHxxG61znN3PCukNAxyi", // v3.0.0 "/btfs/QmSTcj1pWk972bdtStQtJeu3yCYo1SDShrbEHaEybciTLR", // v2.3.5 "/btfs/QmPFT7PscyJ1FZ4FeFPFgikszBugQSBFNycPpy5zpK2pZe", // v2.3.3 "/btfs/QmUKCyDc4h9KN93AdZ7ZVqgPProsKs8NAbVJkK3ux9788d", // v2.3.2 diff --git a/version.go b/version.go index f4ce182ce..97850285e 100644 --- a/version.go +++ b/version.go @@ -4,7 +4,7 @@ package btfs var CurrentCommit string // CurrentVersionNumber is the current application's version literal -const CurrentVersionNumber = "3.0.0" +const CurrentVersionNumber = "3.1.0" const ApiVersion = "/go-btfs/" + CurrentVersionNumber + "/"