From db4180d4ad4766d83ee064aeb4855e1c60047936 Mon Sep 17 00:00:00 2001 From: Warren He Date: Tue, 26 Apr 2022 15:36:50 -0700 Subject: [PATCH] bump runtime protocol version --- go/common/version/version.go | 2 +- runtime/src/common/version.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go/common/version/version.go b/go/common/version/version.go index e5a7db06498..e62a7c03bea 100644 --- a/go/common/version/version.go +++ b/go/common/version/version.go @@ -131,7 +131,7 @@ var ( // the runtime. // // NOTE: This version must be synced with runtime/src/common/version.rs. - RuntimeHostProtocol = Version{Major: 5, Minor: 0, Patch: 0} + RuntimeHostProtocol = Version{Major: 6, Minor: 0, Patch: 0} // RuntimeCommitteeProtocol versions the P2P protocol used by the runtime // committee members. diff --git a/runtime/src/common/version.rs b/runtime/src/common/version.rs index 4144693d39a..1f249a3d3da 100644 --- a/runtime/src/common/version.rs +++ b/runtime/src/common/version.rs @@ -69,7 +69,7 @@ impl From for Version { // and the runtime. This version MUST be compatible with the one supported by // the worker host. pub const PROTOCOL_VERSION: Version = Version { - major: 5, + major: 6, minor: 0, patch: 0, };