ipfs-cluster/version/version.go
2021-01-14 00:32:38 +01:00

20 lines
673 B
Go

package version
import (
semver "github.com/blang/semver"
protocol "github.com/libp2p/go-libp2p-core/protocol"
)
// Version is the current cluster version.
var Version = semver.MustParse("0.13.1-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
// version.
//
// The RPC Protocol is not linked to the IPFS Cluster version (though it once
// was). The protocol version will be updated as needed when breaking changes
// are introduced, though at this point we aim to minimize those as much as
// possible.
var RPCProtocol = protocol.ID("/ipfscluster/0.12/rpc")