Skip to content

Commit b039de9

Browse files
committed
chore: version bump to rc.22.1
Signed-off-by: Marin Veršić <marin.versic101@gmail.com>
1 parent 4fe1374 commit b039de9

File tree

6 files changed

+54
-48
lines changed

6 files changed

+54
-48
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## [Unreleased]
44

5-
## [2.0.0-pre-rc.22.0] - 2024-07-25
5+
## [2.0.0-pre-rc.22.1] - 2024-07-30
6+
7+
### Fixed
8+
9+
- added `jq` to the docker image
10+
11+
## [2.0.0-pre-rc.22.1] - 2024-07-25
612

713
### Added
814

Cargo.toml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace.package]
22
edition = "2021"
3-
version = "2.0.0-pre-rc.22.0"
3+
version = "2.0.0-pre-rc.22.1"
44
# TODO: teams are being deprecated update the authors URL
55
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
66

@@ -14,41 +14,41 @@ keywords = ["blockchain", "crypto", "iroha", "ledger"]
1414
categories = ["cryptography::cryptocurrencies"]
1515

1616
[workspace.dependencies]
17-
iroha_core = { version = "=2.0.0-pre-rc.22.0 ", path = "core" }
18-
19-
irohad = { version = "=2.0.0-pre-rc.22.0", path = "cli" }
20-
iroha_torii = { version = "=2.0.0-pre-rc.22.0", path = "torii" }
21-
iroha_torii_const = { version = "=2.0.0-pre-rc.22.0", path = "torii/const" }
22-
23-
iroha = { version = "=2.0.0-pre-rc.22.0", path = "client" }
24-
25-
iroha_macro_utils = { version = "=2.0.0-pre-rc.22.0", path = "macro/utils" }
26-
iroha_telemetry = { version = "=2.0.0-pre-rc.22.0", path = "telemetry" }
27-
iroha_p2p = { version = "=2.0.0-pre-rc.22.0", path = "p2p" }
28-
iroha_primitives = { version = "=2.0.0-pre-rc.22.0", path = "primitives", default-features = false }
29-
iroha_data_model = { version = "=2.0.0-pre-rc.22.0", path = "data_model", default-features = false }
30-
iroha_config = { version = "=2.0.0-pre-rc.22.0", path = "config" }
31-
iroha_config_base = { version = "=2.0.0-pre-rc.22.0", path = "config/base" }
32-
iroha_schema_gen = { version = "=2.0.0-pre-rc.22.0", path = "schema/gen" }
33-
iroha_schema = { version = "=2.0.0-pre-rc.22.0", path = "schema", default-features = false }
34-
iroha_logger = { version = "=2.0.0-pre-rc.22.0", path = "logger" }
35-
iroha_crypto = { version = "=2.0.0-pre-rc.22.0", path = "crypto", default-features = false }
36-
iroha_macro = { version = "=2.0.0-pre-rc.22.0", path = "macro", default-features = false }
37-
iroha_futures = { version = "=2.0.0-pre-rc.22.0", path = "futures" }
38-
iroha_genesis = { version = "=2.0.0-pre-rc.22.0", path = "genesis" }
39-
iroha_ffi = { version = "=2.0.0-pre-rc.22.0", path = "ffi" }
40-
iroha_version = { version = "=2.0.0-pre-rc.22.0", path = "version", default-features = false }
41-
iroha_wasm_codec = { version = "=2.0.0-pre-rc.22.0", path = "wasm_codec" }
42-
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.0", path = "wasm_builder" }
43-
44-
iroha_smart_contract = { version = "=2.0.0-pre-rc.22.0", path = "smart_contract" }
45-
iroha_smart_contract_utils = { version = "=2.0.0-pre-rc.22.0", path = "smart_contract/utils" }
46-
47-
iroha_executor = { version = "=2.0.0-pre-rc.22.0", path = "smart_contract/executor" }
48-
iroha_executor_data_model = { version = "=2.0.0-pre-rc.22.0", path = "smart_contract/executor/data_model" }
49-
50-
test_network = { version = "=2.0.0-pre-rc.22.0", path = "core/test_network" }
51-
test_samples = { version = "=2.0.0-pre-rc.22.0", path = "test_samples" }
17+
iroha_core = { version = "=2.0.0-pre-rc.22.1 ", path = "core" }
18+
19+
irohad = { version = "=2.0.0-pre-rc.22.1", path = "cli" }
20+
iroha_torii = { version = "=2.0.0-pre-rc.22.1", path = "torii" }
21+
iroha_torii_const = { version = "=2.0.0-pre-rc.22.1", path = "torii/const" }
22+
23+
iroha = { version = "=2.0.0-pre-rc.22.1", path = "client" }
24+
25+
iroha_macro_utils = { version = "=2.0.0-pre-rc.22.1", path = "macro/utils" }
26+
iroha_telemetry = { version = "=2.0.0-pre-rc.22.1", path = "telemetry" }
27+
iroha_p2p = { version = "=2.0.0-pre-rc.22.1", path = "p2p" }
28+
iroha_primitives = { version = "=2.0.0-pre-rc.22.1", path = "primitives", default-features = false }
29+
iroha_data_model = { version = "=2.0.0-pre-rc.22.1", path = "data_model", default-features = false }
30+
iroha_config = { version = "=2.0.0-pre-rc.22.1", path = "config" }
31+
iroha_config_base = { version = "=2.0.0-pre-rc.22.1", path = "config/base" }
32+
iroha_schema_gen = { version = "=2.0.0-pre-rc.22.1", path = "schema/gen" }
33+
iroha_schema = { version = "=2.0.0-pre-rc.22.1", path = "schema", default-features = false }
34+
iroha_logger = { version = "=2.0.0-pre-rc.22.1", path = "logger" }
35+
iroha_crypto = { version = "=2.0.0-pre-rc.22.1", path = "crypto", default-features = false }
36+
iroha_macro = { version = "=2.0.0-pre-rc.22.1", path = "macro", default-features = false }
37+
iroha_futures = { version = "=2.0.0-pre-rc.22.1", path = "futures" }
38+
iroha_genesis = { version = "=2.0.0-pre-rc.22.1", path = "genesis" }
39+
iroha_ffi = { version = "=2.0.0-pre-rc.22.1", path = "ffi" }
40+
iroha_version = { version = "=2.0.0-pre-rc.22.1", path = "version", default-features = false }
41+
iroha_wasm_codec = { version = "=2.0.0-pre-rc.22.1", path = "wasm_codec" }
42+
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.1", path = "wasm_builder" }
43+
44+
iroha_smart_contract = { version = "=2.0.0-pre-rc.22.1", path = "smart_contract" }
45+
iroha_smart_contract_utils = { version = "=2.0.0-pre-rc.22.1", path = "smart_contract/utils" }
46+
47+
iroha_executor = { version = "=2.0.0-pre-rc.22.1", path = "smart_contract/executor" }
48+
iroha_executor_data_model = { version = "=2.0.0-pre-rc.22.1", path = "smart_contract/executor/data_model" }
49+
50+
test_network = { version = "=2.0.0-pre-rc.22.1", path = "core/test_network" }
51+
test_samples = { version = "=2.0.0-pre-rc.22.1", path = "test_samples" }
5252

5353
proc-macro2 = "1.0.86"
5454
syn = { version = "2.0.72", default-features = false }

client/tests/integration/smartcontracts/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace.package]
22
edition = "2021"
3-
version = "2.0.0-pre-rc.22.0"
3+
version = "2.0.0-pre-rc.22.1"
44
# TODO: teams are being deprecated update the authors URL
55
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
66

@@ -39,12 +39,12 @@ codegen-units = 1 # Further reduces binary size but increases compilation time
3939
[workspace.dependencies]
4040
executor_custom_data_model = { path = "executor_custom_data_model" }
4141

42-
iroha_smart_contract = { version = "=2.0.0-pre-rc.22.0", path = "../../../../smart_contract", features = ["debug"] }
43-
iroha_trigger = { version = "=2.0.0-pre-rc.22.0", path = "../../../../smart_contract/trigger", features = ["debug"] }
44-
iroha_executor = { version = "=2.0.0-pre-rc.22.0", path = "../../../../smart_contract/executor", features = ["debug"] }
45-
iroha_schema = { version = "=2.0.0-pre-rc.22.0", path = "../../../../schema" }
46-
iroha_data_model = { version = "=2.0.0-pre-rc.22.0", path = "../../../../data_model", default-features = false }
47-
iroha_executor_data_model = { version = "=2.0.0-pre-rc.22.0", path = "../../../../smart_contract/executor/data_model" }
42+
iroha_smart_contract = { version = "=2.0.0-pre-rc.22.1", path = "../../../../smart_contract", features = ["debug"] }
43+
iroha_trigger = { version = "=2.0.0-pre-rc.22.1", path = "../../../../smart_contract/trigger", features = ["debug"] }
44+
iroha_executor = { version = "=2.0.0-pre-rc.22.1", path = "../../../../smart_contract/executor", features = ["debug"] }
45+
iroha_schema = { version = "=2.0.0-pre-rc.22.1", path = "../../../../schema" }
46+
iroha_data_model = { version = "=2.0.0-pre-rc.22.1", path = "../../../../data_model", default-features = false }
47+
iroha_executor_data_model = { version = "=2.0.0-pre-rc.22.1", path = "../../../../smart_contract/executor/data_model" }
4848

4949
parity-scale-codec = { version = "3.2.1", default-features = false }
5050
anyhow = { version = "1.0.71", default-features = false }

client/tests/integration/smartcontracts/multisig/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ serde = { workspace = true, features = ["derive"] }
2222
serde_json = { workspace = true, default-features = false }
2323

2424
[build-dependencies]
25-
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.0", path = "../../../../../wasm_builder" }
25+
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.1", path = "../../../../../wasm_builder" }

client/tests/integration/smartcontracts/multisig_register/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ serde = { workspace = true, features = ["derive"] }
2323
serde_json = { workspace = true, default-features = false }
2424

2525
[build-dependencies]
26-
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.0", path = "../../../../../wasm_builder" }
26+
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.1", path = "../../../../../wasm_builder" }

default_executor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "iroha_default_executor"
33

44
edition = "2021"
5-
version = "2.0.0-pre-rc.22.0"
5+
version = "2.0.0-pre-rc.22.1"
66
# TODO: teams are being deprecated update the authors URL
77
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
88

@@ -24,7 +24,7 @@ opt-level = "z" # Optimize for size vs speed with "s"/"z"(removes vectorizat
2424
codegen-units = 1 # Further reduces binary size but increases compilation time
2525

2626
[dependencies]
27-
iroha_executor = { version = "2.0.0-pre-rc.22.0", path = "../smart_contract/executor", features = ["debug"] }
27+
iroha_executor = { version = "2.0.0-pre-rc.22.1", path = "../smart_contract/executor", features = ["debug"] }
2828
getrandom = { version = "0.2", features = ["custom"] }
2929

3030
dlmalloc = { version = "0.2.6", features = ["global"] }

0 commit comments

Comments
 (0)