From 5f746f870bfb3cf2b5441e669d550eced8ac29b6 Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Wed, 2 Feb 2022 01:08:22 +0100 Subject: [PATCH] Release candidate v0.14.5-rc1 --- 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 378059cf..8e5a6f0d 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.4-next" +const Version = "0.14.5-rc1" var ( defaultHost = "/ip4/127.0.0.1/tcp/9094" diff --git a/version/version.go b/version/version.go index 2bd11876..531bb9b6 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.4-next") +var Version = semver.MustParse("0.14.5-rc1") // RPCProtocol is protocol handler used to send libp2p-rpc messages between // cluster peers. All peers in the cluster need to speak the same protocol