Skip to content

Commit a4d5c9f

Browse files
committed
[bump]: Version to pre-rc.11
Signed-off-by: Aleksandr Petrosyan <a-p-petrosyan@yandex.ru>
1 parent e07068d commit a4d5c9f

File tree

39 files changed

+200
-200
lines changed

39 files changed

+200
-200
lines changed

Cargo.lock

+35-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actor/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroha_actor"
3-
version = "2.0.0-pre-rc.9"
3+
version = "2.0.0-pre-rc.11"
44
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
55
edition = "2021"
66

@@ -12,9 +12,9 @@ default = []
1212
deadlock_detection = ["petgraph"]
1313

1414
[dependencies]
15-
iroha_actor_derive = { version = "=2.0.0-pre-rc.9", path = "derive" }
16-
iroha_logger = { version = "=2.0.0-pre-rc.9", path = "../logger" }
17-
iroha_primitives = { version = "=2.0.0-pre-rc.9", path = "../primitives" }
15+
iroha_actor_derive = { version = "=2.0.0-pre-rc.11", path = "derive" }
16+
iroha_logger = { version = "=2.0.0-pre-rc.11", path = "../logger" }
17+
iroha_primitives = { version = "=2.0.0-pre-rc.11", path = "../primitives" }
1818

1919
async-trait = "0.1.57"
2020
once_cell = "1.13.0"

actor/derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroha_actor_derive"
3-
version = "2.0.0-pre-rc.9"
3+
version = "2.0.0-pre-rc.11"
44
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
55
edition = "2021"
66

@@ -14,6 +14,6 @@ proc-macro2 = "1.0.43"
1414
proc-macro-error = "1.0.4"
1515

1616
[dev-dependencies]
17-
iroha_actor = { version = "=2.0.0-pre-rc.9", path = "../" }
17+
iroha_actor = { version = "=2.0.0-pre-rc.11", path = "../" }
1818

1919
trybuild = "1.0.64"

cli/Cargo.toml

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroha"
3-
version = "2.0.0-pre-rc.9"
3+
version = "2.0.0-pre-rc.11"
44
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
55
edition = "2021"
66
description = "Iroha is a straightforward distributed ledger technology (DLT), inspired by Japanese Kaizen principle — eliminate excessiveness (muri). Iroha has essential functionality for your asset, information and identity management needs, at the same time being an efficient and trustworthy crash fault-tolerant tool for your enterprise needs."
@@ -36,20 +36,20 @@ is-it-maintained-open-issues = { repository = "https://github.com/hyperledger/ir
3636
maintenance = { status = "actively-developed" }
3737

3838
[dependencies]
39-
iroha_core = { version = "=2.0.0-pre-rc.9", path = "../core" }
40-
iroha_macro = { version = "=2.0.0-pre-rc.9", path = "../macro" }
41-
iroha_permissions_validators = { version = "=2.0.0-pre-rc.9", path = "../permissions_validators" }
42-
iroha_logger = { version = "=2.0.0-pre-rc.9", path = "../logger" }
43-
iroha_futures = { version = "=2.0.0-pre-rc.9", path = "../futures" }
44-
iroha_actor = { version = "=2.0.0-pre-rc.9", path = "../actor" }
45-
iroha_data_model = { version = "=2.0.0-pre-rc.9", path = "../data_model" }
46-
iroha_telemetry = { version = "=2.0.0-pre-rc.9", path = "../telemetry", optional = true }
47-
iroha_version = { version = "=2.0.0-pre-rc.9", path = "../version", features = ["warp"] }
48-
iroha_config = { version = "=2.0.0-pre-rc.9", path = "../config" }
49-
iroha_crypto = { version = "=2.0.0-pre-rc.9", path = "../crypto" }
50-
iroha_p2p = { version = "=2.0.0-pre-rc.9", path = "../p2p" }
51-
iroha_schema_gen = { version = "=2.0.0-pre-rc.9", path = "../schema/gen", optional = true }
52-
iroha_cli_derive = { version = "=2.0.0-pre-rc.9", path = "derive" }
39+
iroha_core = { version = "=2.0.0-pre-rc.11", path = "../core" }
40+
iroha_macro = { version = "=2.0.0-pre-rc.11", path = "../macro" }
41+
iroha_permissions_validators = { version = "=2.0.0-pre-rc.11", path = "../permissions_validators" }
42+
iroha_logger = { version = "=2.0.0-pre-rc.11", path = "../logger" }
43+
iroha_futures = { version = "=2.0.0-pre-rc.11", path = "../futures" }
44+
iroha_actor = { version = "=2.0.0-pre-rc.11", path = "../actor" }
45+
iroha_data_model = { version = "=2.0.0-pre-rc.11", path = "../data_model" }
46+
iroha_telemetry = { version = "=2.0.0-pre-rc.11", path = "../telemetry", optional = true }
47+
iroha_version = { version = "=2.0.0-pre-rc.11", path = "../version", features = ["warp"] }
48+
iroha_config = { version = "=2.0.0-pre-rc.11", path = "../config" }
49+
iroha_crypto = { version = "=2.0.0-pre-rc.11", path = "../crypto" }
50+
iroha_p2p = { version = "=2.0.0-pre-rc.11", path = "../p2p" }
51+
iroha_schema_gen = { version = "=2.0.0-pre-rc.11", path = "../schema/gen", optional = true }
52+
iroha_cli_derive = { version = "=2.0.0-pre-rc.11", path = "derive" }
5353

5454
async-trait = "0.1.57"
5555
color-eyre = "0.6.2"

cli/derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroha_cli_derive"
3-
version = "2.0.0-pre-rc.9"
3+
version = "2.0.0-pre-rc.11"
44
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
55
edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)