From 493089d6d02272f163a26b8fdb3436df90721425 Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Tue, 6 Jul 2021 16:56:53 +0200 Subject: [PATCH] Release candidate v0.14.0-rc2 --- cmd/ipfs-cluster-ctl/main.go | 2 +- version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/ipfs-cluster-ctl/main.go b/cmd/ipfs-cluster-ctl/main.go index ceedf348..f95db211 100644 --- a/cmd/ipfs-cluster-ctl/main.go +++ b/cmd/ipfs-cluster-ctl/main.go @@ -28,7 +28,7 @@ const programName = `ipfs-cluster-ctl` // Version is the cluster-ctl tool version. It should match // the IPFS cluster's version -const Version = "0.14.0-rc1" +const Version = "0.14.0-rc2" var ( defaultHost = "/ip4/127.0.0.1/tcp/9094" diff --git a/version/version.go b/version/version.go index 95b47308..0270ba89 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ import ( ) // Version is the current cluster version. -var Version = semver.MustParse("0.14.0-rc1") +var Version = semver.MustParse("0.14.0-rc2") // RPCProtocol is protocol handler used to send libp2p-rpc messages between // cluster peers. All peers in the cluster need to speak the same protocol