feat: Bump client version to v0.2.0 & runtime spec_version to 200 (#194)

This commit is contained in:
Steve Degosserie 2025-09-29 23:35:12 +02:00 committed by GitHub
parent 5165cbbbea
commit 91e29700a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 42 additions and 40 deletions

34
operator/Cargo.lock generated
View file

@ -2821,7 +2821,7 @@ dependencies = [
[[package]]
name = "datahaven-mainnet-runtime"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"bridge-hub-common 0.13.1",
"datahaven-runtime-common",
@ -2961,7 +2961,7 @@ dependencies = [
[[package]]
name = "datahaven-node"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"async-channel 1.9.0",
"clap",
@ -3070,7 +3070,7 @@ dependencies = [
[[package]]
name = "datahaven-runtime-common"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"fp-account",
"frame-support",
@ -3094,7 +3094,7 @@ dependencies = [
[[package]]
name = "datahaven-stagenet-runtime"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"bridge-hub-common 0.13.1",
"datahaven-runtime-common",
@ -3234,7 +3234,7 @@ dependencies = [
[[package]]
name = "datahaven-testnet-runtime"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"bridge-hub-common 0.13.1",
"datahaven-runtime-common",
@ -3510,7 +3510,7 @@ dependencies = [
[[package]]
name = "dhp-bridge"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"frame-support",
"frame-system",
@ -8878,7 +8878,7 @@ dependencies = [
[[package]]
name = "pallet-datahaven-native-transfer"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"frame-benchmarking",
"frame-support",
@ -8990,7 +8990,7 @@ dependencies = [
[[package]]
name = "pallet-evm-precompile-balances-erc20"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"fp-evm",
"frame-support",
@ -9013,7 +9013,7 @@ dependencies = [
[[package]]
name = "pallet-evm-precompile-batch"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"evm",
"fp-evm",
@ -9052,7 +9052,7 @@ dependencies = [
[[package]]
name = "pallet-evm-precompile-call-permit"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"evm",
"fp-evm",
@ -9103,7 +9103,7 @@ dependencies = [
[[package]]
name = "pallet-evm-precompile-proxy"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"evm",
"fp-evm",
@ -9124,7 +9124,7 @@ dependencies = [
[[package]]
name = "pallet-evm-precompile-registry"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"fp-evm",
"frame-support",
@ -9161,7 +9161,7 @@ dependencies = [
[[package]]
name = "pallet-external-validators"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"frame-benchmarking",
"frame-support",
@ -9183,7 +9183,7 @@ dependencies = [
[[package]]
name = "pallet-external-validators-rewards"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"cumulus-primitives-core",
"frame-benchmarking",
@ -9210,7 +9210,7 @@ dependencies = [
[[package]]
name = "pallet-external-validators-rewards-runtime-api"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"parity-scale-codec",
"snowbridge-merkle-tree",
@ -9433,7 +9433,7 @@ dependencies = [
[[package]]
name = "pallet-outbound-commitment-store"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"frame-support",
"frame-system",
@ -16164,7 +16164,7 @@ dependencies = [
[[package]]
name = "snowbridge-test-utils"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"frame-benchmarking",
"frame-support",

View file

@ -4,6 +4,8 @@ edition = "2021"
homepage = "https://datahaven.xyz/"
license = "GPL-3"
repository = "https://github.com/datahavenxyz/datahaven"
description = "DataHaven: A decentralized storage network with Ethereum and IPFS integration."
version = "0.2.0"
[workspace]
members = [

View file

@ -7,7 +7,7 @@ license = "Unlicense"
name = "datahaven-node"
publish = false
repository = { workspace = true }
version = "0.1.0"
version = { workspace = true }
build = "build.rs"

View file

@ -4,7 +4,7 @@ authors = { workspace = true }
description = "Pallet for transferring DataHaven native tokens to and from Ethereum."
edition = "2021"
license = "GPL-3.0-only"
version = "0.1.0"
version = { workspace = true }
[package.metadata.docs.rs]
targets = [ "x86_64-unknown-linux-gnu" ]

View file

@ -4,7 +4,7 @@ authors = { workspace = true }
description = "Simple pallet to store external validators rewards."
edition = "2021"
license = "GPL-3.0-only"
version = "0.1.0"
version = { workspace = true }
[package.metadata.docs.rs]
targets = [ "x86_64-unknown-linux-gnu" ]

View file

@ -4,7 +4,7 @@ authors = { workspace = true }
description = "Runtime API definition of pallet-external-validators-rewards"
edition = "2021"
license = "GPL-3.0-only"
version = "0.1.0"
version = { workspace = true }
[package.metadata.docs.rs]
targets = [ "x86_64-unknown-linux-gnu" ]

View file

@ -4,7 +4,7 @@ authors = { workspace = true }
description = "Simple pallet to store external validators."
edition = "2021"
license = "GPL-3.0-only"
version = "0.1.0"
version = { workspace = true }
[package.metadata.docs.rs]
targets = [ "x86_64-unknown-linux-gnu" ]

View file

@ -3,7 +3,7 @@ authors = { workspace = true }
description = "Pallet for storing the latest commitment hash from the outbound queue for cross-chain verification"
edition = { workspace = true }
name = "pallet-outbound-commitment-store"
version = "0.1.0"
version = { workspace = true }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

View file

@ -3,7 +3,7 @@ name = "pallet-evm-precompile-batch"
authors = { workspace = true }
description = "A Precompile to batch multiple calls."
edition = "2021"
version = "0.1.0"
version = { workspace = true }
[dependencies]

View file

@ -3,7 +3,7 @@ name = "pallet-evm-precompile-call-permit"
authors = { workspace = true }
description = "A Precompile to dispatch a call with a ERC712 permit."
edition = "2021"
version = "0.1.0"
version = { workspace = true }
[dependencies]

View file

@ -3,7 +3,7 @@ name = "pallet-evm-precompile-balances-erc20"
authors = { workspace = true }
description = "A Precompile to expose a Balances pallet through an ERC20-compliant interface."
edition = "2021"
version = "0.1.0"
version = { workspace = true }
[dependencies]
paste = { workspace = true }

View file

@ -3,7 +3,7 @@ name = "pallet-evm-precompile-registry"
authors = ["The DataHaven Team"]
description = "Registry of active precompiles"
edition = "2021"
version = "0.1.0"
version = { workspace = true }
[dependencies]
# Substrate

View file

@ -3,7 +3,7 @@ name = "pallet-evm-precompile-proxy"
authors = { workspace = true }
description = "A Precompile to make proxy calls encoding accessible to pallet-evm"
edition = "2021"
version = "0.1.0"
version = { workspace = true }
[dependencies]

View file

@ -5,7 +5,7 @@ homepage = { workspace = true }
license = { workspace = true }
name = "dhp-bridge"
repository = { workspace = true }
version = "0.1.0"
version = { workspace = true }
[dependencies]
frame-support = { workspace = true }

View file

@ -6,7 +6,7 @@ edition.workspace = true
license = "Apache-2.0"
name = "snowbridge-test-utils"
repository.workspace = true
version = "0.1.0"
version = { workspace = true }
[package.metadata.polkadot-sdk]
exclude-from-umbrella = true

View file

@ -2,7 +2,7 @@
description = "Common code used through the DataHaven network"
edition = { workspace = true }
name = "datahaven-runtime-common"
version = "0.1.0"
version = { workspace = true }
[dependencies]
codec = { workspace = true }

View file

@ -7,7 +7,7 @@ license = "Unlicense"
name = "datahaven-mainnet-runtime"
publish = false
repository = { workspace = true }
version = "0.1.0"
version = { workspace = true }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

View file

@ -120,9 +120,9 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// The version of the runtime specification. A full node will not attempt to use its native
// runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`,
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// This value is set to 200 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 100,
spec_version: 200,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,

View file

@ -7,7 +7,7 @@ license = "Unlicense"
name = "datahaven-stagenet-runtime"
publish = false
repository = { workspace = true }
version = "0.1.0"
version = { workspace = true }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

View file

@ -123,9 +123,9 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// The version of the runtime specification. A full node will not attempt to use its native
// runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`,
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// This value is set to 200 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 100,
spec_version: 200,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,

View file

@ -7,7 +7,7 @@ license = "Unlicense"
name = "datahaven-testnet-runtime"
publish = false
repository = { workspace = true }
version = "0.1.0"
version = { workspace = true }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

View file

@ -119,9 +119,9 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// The version of the runtime specification. A full node will not attempt to use its native
// runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`,
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// This value is set to 200 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 100,
spec_version: 200,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,

Binary file not shown.