Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 30 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "integritee-kusama-emulated-chain"
authors.workspace = true
edition.workspace = true
version = "1.18.0"
version = "1.18.2"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shall we use the version.workspace = true too, and only manage the runtime separately?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that would make sense (in the future)

license = "Apache-2.0"
description = "Integritee Kusama emulated chain used for integration tests"
publish = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "integritee-polkadot-emulated-chain"
authors.workspace = true
edition.workspace = true
version = "1.18.0"
version = "1.18.2"
license = "Apache-2.0"
description = "Integritee Polkadot emulated chain used for integration tests"
publish = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "kusama-polkadot-system-emulated-network"
authors.workspace = true
edition.workspace = true
version = "1.18.0"
version = "1.18.2"
license = "Apache-2.0"
description = "Kusama<>Polkadot emulated bridged network"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/emulated/tests/bridges/ik-ip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "bridge-hub-ik-ip-integration-tests"
authors.workspace = true
edition.workspace = true
version = "1.18.0"
version = "1.18.2"
license = "Apache-2.0"
description = "Bridge Hub Kusama runtime integration tests with xcm-emulator"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "integritee-collator"
description = "The Integritee parachain collator binary"
# align major.minor revision with polkadot SDK. bump patch revision ad lib. make this the github release tag
version = "1.18.1"
version = "1.18.2"
authors = ["Integritee AG <hello@integritee.network>"]
homepage = "https://integritee.network/"
repository = "https://github.com/integritee-network/parachain"
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/integritee-kusama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "integritee-kusama-runtime"
description = "The Integritee Kusama parachain runtime"
# align major.minor revision with polkadot SDK. patch revision must match runtime spec_version
version = "1.18.561"
version = "1.18.562"
authors = ["Integritee AG <hello@integritee.network>"]
homepage = "https://integritee.network/"
repository = "https://github.com/integritee-network/parachain"
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/integritee-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: Cow::Borrowed("integritee-kusama"),
impl_name: Cow::Borrowed("integritee-full"),
authoring_version: 2,
spec_version: 561,
spec_version: 562,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 8,
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/integritee-polkadot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "integritee-polkadot-runtime"
description = "The Integritee Polkadot parachain runtime"
# align major.minor revision with polkadot SDK. patch revision must match runtime spec_version
version = "1.18.561"
version = "1.18.562"
authors = ["Integritee AG <hello@integritee.network>"]
homepage = "https://integritee.network/"
repository = "https://github.com/integritee-network/parachain"
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/integritee-polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: Cow::Borrowed("integritee-polkadot"),
impl_name: Cow::Borrowed("integritee-full"),
authoring_version: 2,
spec_version: 561,
spec_version: 562,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 8,
Expand Down
Loading