rename merged rococo to rococo-v1 (#1521)

* rename rococo to rococo-v1

* update Cargo.lock
This commit is contained in:
Robert Habermeier
2020-08-02 23:36:07 +02:00
committed by GitHub
parent 047e2fdb21
commit 94a6d6e65a
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -5994,7 +5994,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "rococo-runtime" name = "rococo-v1-runtime"
version = "0.8.19" version = "0.8.19"
dependencies = [ dependencies = [
"frame-executive", "frame-executive",
+1 -1
View File
@@ -35,7 +35,7 @@ members = [
"runtime/parachains", "runtime/parachains",
"runtime/polkadot", "runtime/polkadot",
"runtime/kusama", "runtime/kusama",
"runtime/rococo", "runtime/rococo-v1",
"runtime/westend", "runtime/westend",
"runtime/test-runtime", "runtime/test-runtime",
"runtime/test-runtime/client", "runtime/test-runtime/client",
@@ -1,5 +1,5 @@
[package] [package]
name = "rococo-runtime" name = "rococo-v1-runtime"
version = "0.8.19" version = "0.8.19"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>. // along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
//! The Rococo runtime. //! The Rococo runtime for v1 parachains.
#![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(not(feature = "std"), no_std)]
// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256.
@@ -382,8 +382,8 @@ impl Filter<Call> for BaseFilter {
/// Runtime version (Rococo). /// Runtime version (Rococo).
pub const VERSION: RuntimeVersion = RuntimeVersion { pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("rococo"), spec_name: create_runtime_str!("rococo-v1"),
impl_name: create_runtime_str!("parity-rococo"), impl_name: create_runtime_str!("parity-rococo-v1"),
authoring_version: 0, authoring_version: 0,
spec_version: 1, spec_version: 1,
impl_version: 0, impl_version: 0,