Skip to content

Commit

Permalink
[bump]: Version to pre-rc.13
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 Feb 1, 2023
1 parent ddd5942 commit 4b889e7
Show file tree
Hide file tree
Showing 39 changed files with 200 additions and 200 deletions.
70 changes: 35 additions & 35 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.11"
version = "2.0.0-pre-rc.13"
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
edition = "2021"

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

[dependencies]
iroha_actor_derive = { version = "=2.0.0-pre-rc.11", path = "derive" }
iroha_logger = { version = "=2.0.0-pre-rc.11", path = "../logger" }
iroha_primitives = { version = "=2.0.0-pre-rc.11", path = "../primitives" }
iroha_actor_derive = { version = "=2.0.0-pre-rc.13", path = "derive" }
iroha_logger = { version = "=2.0.0-pre-rc.13", path = "../logger" }
iroha_primitives = { version = "=2.0.0-pre-rc.13", path = "../primitives" }

async-trait = "0.1.60"
once_cell = "1.16.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.11"
version = "2.0.0-pre-rc.13"
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
edition = "2021"

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

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

trybuild = "1.0.73"
30 changes: 15 additions & 15 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.11"
version = "2.0.0-pre-rc.13"
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 Down Expand Up @@ -36,20 +36,20 @@ is-it-maintained-open-issues = { repository = "https://github.com/hyperledger/ir
maintenance = { status = "actively-developed" }

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

async-trait = "0.1.60"
color-eyre = "0.6.2"
Expand Down
2 changes: 1 addition & 1 deletion cli/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroha_cli_derive"
version = "2.0.0-pre-rc.11"
version = "2.0.0-pre-rc.13"
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 4b889e7

Please sign in to comment.