Release v0.14.4

This commit is contained in:
Hector Sanjuan 2022-01-11 19:13:28 +01:00
parent 4be8c55875
commit d80a8b42c8
No known key found for this signature in database
GPG Key ID: 5C5518D5765D8A12
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ const programName = `ipfs-cluster-ctl`
// Version is the cluster-ctl tool version. It should match // Version is the cluster-ctl tool version. It should match
// the IPFS cluster's version // the IPFS cluster's version
const Version = "0.14.3-next" const Version = "0.14.4"
var ( var (
defaultHost = "/ip4/127.0.0.1/tcp/9094" defaultHost = "/ip4/127.0.0.1/tcp/9094"

View File

@ -6,7 +6,7 @@ import (
) )
// Version is the current cluster version. // Version is the current cluster version.
var Version = semver.MustParse("0.14.3-next") var Version = semver.MustParse("0.14.4")
// RPCProtocol is protocol handler used to send libp2p-rpc messages between // RPCProtocol is protocol handler used to send libp2p-rpc messages between
// cluster peers. All peers in the cluster need to speak the same protocol // cluster peers. All peers in the cluster need to speak the same protocol