Skip to content

Commit

Permalink
[ci]: Version bump all of the crates.
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksandr Petrosyan <a-p-petrosyan@yandex.ru>
  • Loading branch information
appetrosyan committed May 5, 2022
1 parent 4543d69 commit 827e622
Show file tree
Hide file tree
Showing 32 changed files with 167 additions and 153 deletions.
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.

8 changes: 4 additions & 4 deletions actor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroha_actor"
version = "2.0.0-pre-rc.3"
version = "2.0.0-pre-rc.4"
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
edition = "2021"

Expand All @@ -11,9 +11,9 @@ default = []
deadlock_detection = ["petgraph"]

[dependencies]
iroha_actor_derive = { version = "=2.0.0-pre-rc.3", path = "derive" }
iroha_logger = { version = "=2.0.0-pre-rc.3", path = "../logger" }
iroha_data_primitives = { version = "=2.0.0-pre-rc.3", path = "../data_model/primitives" }
iroha_actor_derive = { version = "=2.0.0-pre-rc.4", path = "derive" }
iroha_logger = { version = "=2.0.0-pre-rc.4", path = "../logger" }
iroha_data_primitives = { version = "=2.0.0-pre-rc.4", path = "../data_model/primitives" }

async-trait = "0.1"
once_cell = "1.8.0"
Expand Down
4 changes: 2 additions & 2 deletions actor/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroha_actor_derive"
version = "2.0.0-pre-rc.3"
version = "2.0.0-pre-rc.4"
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
edition = "2021"

Expand All @@ -14,6 +14,6 @@ proc-macro2 = "1.0"
proc-macro-error = "1.0"

[dev-dependencies]
iroha_actor = { version = "=2.0.0-pre-rc.3", path = "../" }
iroha_actor = { version = "=2.0.0-pre-rc.4", path = "../" }

trybuild = "1.0.53"
28 changes: 14 additions & 14 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroha"
version = "2.0.0-pre-rc.3"
version = "2.0.0-pre-rc.4"
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
edition = "2021"
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."
Expand All @@ -27,19 +27,19 @@ is-it-maintained-open-issues = { repository = "https://github.com/hyperledger/ir
maintenance = { status = "actively-developed" }

[dependencies]
iroha_core = { version = "=2.0.0-pre-rc.3", path = "../core" }
iroha_macro = { version = "=2.0.0-pre-rc.3", path = "../macro" }
iroha_permissions_validators = { version = "=2.0.0-pre-rc.3", path = "../permissions_validators" }
iroha_logger = { version = "=2.0.0-pre-rc.3", path = "../logger" }
iroha_futures = { version = "=2.0.0-pre-rc.3", path = "../futures" }
iroha_actor = { version = "=2.0.0-pre-rc.3", path = "../actor" }
iroha_data_model = { version = "=2.0.0-pre-rc.3", path = "../data_model" }
iroha_telemetry = { version = "=2.0.0-pre-rc.3", path = "../telemetry", optional = true }
iroha_version = { version = "=2.0.0-pre-rc.3", path = "../version", features = ["warp"] }
iroha_config = { version = "=2.0.0-pre-rc.3", path = "../config" }
iroha_crypto = { version = "=2.0.0-pre-rc.3", path = "../crypto" }
iroha_p2p = { version = "=2.0.0-pre-rc.3", path = "../p2p" }
iroha_schema_gen = { version = "=2.0.0-pre-rc.3", path = "../schema/gen", optional = true }
iroha_core = { version = "=2.0.0-pre-rc.4", path = "../core" }
iroha_macro = { version = "=2.0.0-pre-rc.4", path = "../macro" }
iroha_permissions_validators = { version = "=2.0.0-pre-rc.4", path = "../permissions_validators" }
iroha_logger = { version = "=2.0.0-pre-rc.4", path = "../logger" }
iroha_futures = { version = "=2.0.0-pre-rc.4", path = "../futures" }
iroha_actor = { version = "=2.0.0-pre-rc.4", path = "../actor" }
iroha_data_model = { version = "=2.0.0-pre-rc.4", path = "../data_model" }
iroha_telemetry = { version = "=2.0.0-pre-rc.4", path = "../telemetry", optional = true }
iroha_version = { version = "=2.0.0-pre-rc.4", path = "../version", features = ["warp"] }
iroha_config = { version = "=2.0.0-pre-rc.4", path = "../config" }
iroha_crypto = { version = "=2.0.0-pre-rc.4", path = "../crypto" }
iroha_p2p = { version = "=2.0.0-pre-rc.4", path = "../p2p" }
iroha_schema_gen = { version = "=2.0.0-pre-rc.4", path = "../schema/gen", optional = true }

eyre = "0.6.5"
futures = { version = "0.3.17", default-features = false, features = ["std", "async-await"] }
Expand Down
20 changes: 10 additions & 10 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroha_client"
version = "2.0.0-pre-rc.3"
version = "2.0.0-pre-rc.4"
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
edition = "2021"
description = "Iroha Client is a Rust Library which encapsulates network related logic and gives users an ability to interact with Iroha Peers like they are non-distributed application."
Expand All @@ -17,12 +17,12 @@ is-it-maintained-open-issues = { repository = "https://github.com/hyperledger/ir
maintenance = { status = "actively-developed" }

[dependencies]
iroha_config = { version = "=2.0.0-pre-rc.3", path = "../config" }
iroha_crypto = { version = "=2.0.0-pre-rc.3", path = "../crypto"}
iroha_data_model = { version = "=2.0.0-pre-rc.3", path = "../data_model", features = ["warp"] }
iroha_logger = { version = "=2.0.0-pre-rc.3", path = "../logger"}
iroha_telemetry = { version ="=2.0.0-pre-rc.3", path = "../telemetry" }
iroha_version = { version = "=2.0.0-pre-rc.3", path = "../version" }
iroha_config = { version = "=2.0.0-pre-rc.4", path = "../config" }
iroha_crypto = { version = "=2.0.0-pre-rc.4", path = "../crypto"}
iroha_data_model = { version = "=2.0.0-pre-rc.4", path = "../data_model", features = ["warp"] }
iroha_logger = { version = "=2.0.0-pre-rc.4", path = "../logger"}
iroha_telemetry = { version ="=2.0.0-pre-rc.4", path = "../telemetry" }
iroha_version = { version = "=2.0.0-pre-rc.4", path = "../version" }

attohttpc = "0.18"
eyre = "0.6.5"
Expand All @@ -37,11 +37,11 @@ base64 = "0.13.0"


[dev-dependencies]
iroha_core = { version = "=2.0.0-pre-rc.3", path = "../core", features = ["dev-telemetry", "telemetry"]}
iroha_permissions_validators = { version = "=2.0.0-pre-rc.3", path = "../permissions_validators" }
iroha_core = { version = "=2.0.0-pre-rc.4", path = "../core", features = ["dev-telemetry", "telemetry"]}
iroha_permissions_validators = { version = "=2.0.0-pre-rc.4", path = "../permissions_validators" }
iroha = { path = "../cli", features = ["dev-telemetry", "telemetry"] }

test_network = { version = "=2.0.0-pre-rc.3", path = "../core/test_network" }
test_network = { version = "=2.0.0-pre-rc.4", path = "../core/test_network" }

parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] }
tokio = { version = "1.6.0", features = ["rt", "rt-multi-thread"]}
Expand Down
Loading

0 comments on commit 827e622

Please sign in to comment.