ipfs-cluster/version/version.go

18 lines
471 B
Go
Raw Normal View History

package version
import (
"fmt"
semver "github.com/blang/semver"
protocol "github.com/libp2p/go-libp2p-protocol"
)
// Version is the current cluster version. Version alignment between
// components, apis and tools ensures compatibility among them.
2019-08-27 10:55:41 +00:00
var Version = semver.MustParse("0.11.0-rc8")
// RPCProtocol is used to send libp2p messages between cluster peers
var RPCProtocol = protocol.ID(
fmt.Sprintf("/ipfscluster/%d.%d/rpc", Version.Major, Version.Minor),
)