From d3d7c7c9f2a0d7b361bb9349a73124282401e5c0 Mon Sep 17 00:00:00 2001 From: Joshy Orndorff Date: Tue, 14 Dec 2021 07:42:48 -0500 Subject: [PATCH] Prepare for 0.9 release (#33) --- Cargo.lock | 14 +++++++------- nimbus-consensus/Cargo.toml | 4 ++-- nimbus-primitives/Cargo.toml | 4 ++-- pallets/aura-style-filter/Cargo.toml | 3 ++- pallets/author-inherent/Cargo.toml | 4 ++-- pallets/author-slot-filter/Cargo.toml | 3 ++- parachain-template/node/Cargo.toml | 4 ++-- parachain-template/runtime/Cargo.toml | 4 ++-- 8 files changed, 21 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9553273f..f826e105 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4246,7 +4246,7 @@ dependencies = [ [[package]] name = "nimbus-consensus" -version = "0.1.0" +version = "0.9.0" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -4276,7 +4276,7 @@ dependencies = [ [[package]] name = "nimbus-primitives" -version = "0.1.0" +version = "0.9.0" dependencies = [ "async-trait", "frame-support", @@ -4450,7 +4450,7 @@ dependencies = [ [[package]] name = "pallet-aura-style-filter" -version = "0.1.0" +version = "0.9.0" dependencies = [ "frame-support", "frame-system", @@ -4465,7 +4465,7 @@ dependencies = [ [[package]] name = "pallet-author-inherent" -version = "0.1.0" +version = "0.9.0" dependencies = [ "frame-support", "frame-system", @@ -4485,7 +4485,7 @@ dependencies = [ [[package]] name = "pallet-author-slot-filter" -version = "0.1.0" +version = "0.9.0" dependencies = [ "frame-support", "frame-system", @@ -5204,7 +5204,7 @@ dependencies = [ [[package]] name = "parachain-template-node" -version = "0.1.0" +version = "0.9.0" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -5265,7 +5265,7 @@ dependencies = [ [[package]] name = "parachain-template-runtime" -version = "0.1.0" +version = "0.9.0" dependencies = [ "cumulus-pallet-dmp-queue", "cumulus-pallet-parachain-system", diff --git a/nimbus-consensus/Cargo.toml b/nimbus-consensus/Cargo.toml index 1b3216dd..bfb61a88 100644 --- a/nimbus-consensus/Cargo.toml +++ b/nimbus-consensus/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nimbus-consensus" -description = "Client-side worker for the Nimbus family of slot-based consensus algorithms" -version = "0.1.0" +description = "Client-side worker for the Nimbus family of consensus algorithms" +version = "0.9.0" edition = "2021" [dependencies] diff --git a/nimbus-primitives/Cargo.toml b/nimbus-primitives/Cargo.toml index fa4e0144..76b6b5c7 100644 --- a/nimbus-primitives/Cargo.toml +++ b/nimbus-primitives/Cargo.toml @@ -2,8 +2,8 @@ authors = ["PureStake"] edition = "2021" name = "nimbus-primitives" -version = "0.1.0" -description = "Primitive types and traites used in the nimbus consensus framework" +version = "0.9.0" +description = "Primitive types and traits used in the Nimbus consensus framework" [dependencies] parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] } diff --git a/pallets/aura-style-filter/Cargo.toml b/pallets/aura-style-filter/Cargo.toml index 92e41537..66a72f08 100644 --- a/pallets/aura-style-filter/Cargo.toml +++ b/pallets/aura-style-filter/Cargo.toml @@ -2,7 +2,8 @@ authors = ["PureStake"] edition = "2021" name = "pallet-aura-style-filter" -version = "0.1.0" +description = "The Aura (authority round) consensus engine implemented in the Nimbus framework" +version = "0.9.0" [dependencies] parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] } diff --git a/pallets/author-inherent/Cargo.toml b/pallets/author-inherent/Cargo.toml index 229cdb35..01220611 100644 --- a/pallets/author-inherent/Cargo.toml +++ b/pallets/author-inherent/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallet-author-inherent" -version = "0.1.0" -description = "Inject the block author via an inherent, and persist it via a Consensus digest" +version = "0.9.0" +description = "This pallet is the core of the in-runtime portion of Nimbus." authors = ["PureStake"] edition = "2021" license = 'GPL-3.0-only' diff --git a/pallets/author-slot-filter/Cargo.toml b/pallets/author-slot-filter/Cargo.toml index 14028efc..32cc2d47 100644 --- a/pallets/author-slot-filter/Cargo.toml +++ b/pallets/author-slot-filter/Cargo.toml @@ -2,7 +2,8 @@ authors = ["PureStake"] edition = "2021" name = "pallet-author-slot-filter" -version = "0.1.0" +description = "Selects a pseudorandom Subset of eligible (probably staked) authors at each slot" +version = "0.9.0" [dependencies] log = { version = "0.4", default-features = false } diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index 343579ba..d568e1b6 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "parachain-template-node" -version = "0.1.0" +version = "0.9.0" authors = ["Anonymous"] -description = "A new Cumulus FRAME-based Substrate Node, ready for hacking together a parachain." +description = "A Substrate node that demonstrates using the Nimbus consensus framework with instant seal and as a parachain." license = "Unlicense" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/cumulus/" diff --git a/parachain-template/runtime/Cargo.toml b/parachain-template/runtime/Cargo.toml index ade6aba0..d7ee386c 100644 --- a/parachain-template/runtime/Cargo.toml +++ b/parachain-template/runtime/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "parachain-template-runtime" -version = "0.1.0" +version = "0.9.0" authors = ["Anonymous"] -description = "A new Cumulus FRAME-based Substrate Runtime, ready for hacking together a parachain." +description = "A FRAME-based Substrate Runtime, that demonstrates the Nimbus consensus framework." license = "Unlicense" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/cumulus/"