From 81fa2c566524a939a6fb7207c80ecfb2d8ec655c Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Thu, 7 Apr 2022 15:06:04 +0200 Subject: [PATCH] Release candidate v1.0.0-rc4 --- 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 9d1aca1f..57bfac6f 100644 --- a/cmd/ipfs-cluster-ctl/main.go +++ b/cmd/ipfs-cluster-ctl/main.go @@ -27,7 +27,7 @@ const programName = `ipfs-cluster-ctl` // Version is the cluster-ctl tool version. It should match // the IPFS cluster's version -const Version = "1.0.0-rc3" +const Version = "1.0.0-rc4" var ( defaultHost = "/ip4/127.0.0.1/tcp/9094" diff --git a/version/version.go b/version/version.go index 5cc7015a..a14445e1 100644 --- a/version/version.go +++ b/version/version.go @@ -7,7 +7,7 @@ import ( ) // Version is the current cluster version. -var Version = semver.MustParse("1.0.0-rc3") +var Version = semver.MustParse("1.0.0-rc4") // RPCProtocol is protocol handler used to send libp2p-rpc messages between // cluster peers. All peers in the cluster need to speak the same protocol