Skip to content

Commit

Permalink
chore: version bump to rc.22.1
Browse files Browse the repository at this point in the history
Signed-off-by: Marin Veršić <marin.versic101@gmail.com>
  • Loading branch information
mversic committed Jul 30, 2024
1 parent 4fe1374 commit b039de9
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 48 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

## [Unreleased]

## [2.0.0-pre-rc.22.0] - 2024-07-25
## [2.0.0-pre-rc.22.1] - 2024-07-30

### Fixed

- added `jq` to the docker image

## [2.0.0-pre-rc.22.1] - 2024-07-25

### Added

Expand Down
72 changes: 36 additions & 36 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace.package]
edition = "2021"
version = "2.0.0-pre-rc.22.0"
version = "2.0.0-pre-rc.22.1"
# TODO: teams are being deprecated update the authors URL
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]

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

[workspace.dependencies]
iroha_core = { version = "=2.0.0-pre-rc.22.0 ", path = "core" }

irohad = { version = "=2.0.0-pre-rc.22.0", path = "cli" }
iroha_torii = { version = "=2.0.0-pre-rc.22.0", path = "torii" }
iroha_torii_const = { version = "=2.0.0-pre-rc.22.0", path = "torii/const" }

iroha = { version = "=2.0.0-pre-rc.22.0", path = "client" }

iroha_macro_utils = { version = "=2.0.0-pre-rc.22.0", path = "macro/utils" }
iroha_telemetry = { version = "=2.0.0-pre-rc.22.0", path = "telemetry" }
iroha_p2p = { version = "=2.0.0-pre-rc.22.0", path = "p2p" }
iroha_primitives = { version = "=2.0.0-pre-rc.22.0", path = "primitives", default-features = false }
iroha_data_model = { version = "=2.0.0-pre-rc.22.0", path = "data_model", default-features = false }
iroha_config = { version = "=2.0.0-pre-rc.22.0", path = "config" }
iroha_config_base = { version = "=2.0.0-pre-rc.22.0", path = "config/base" }
iroha_schema_gen = { version = "=2.0.0-pre-rc.22.0", path = "schema/gen" }
iroha_schema = { version = "=2.0.0-pre-rc.22.0", path = "schema", default-features = false }
iroha_logger = { version = "=2.0.0-pre-rc.22.0", path = "logger" }
iroha_crypto = { version = "=2.0.0-pre-rc.22.0", path = "crypto", default-features = false }
iroha_macro = { version = "=2.0.0-pre-rc.22.0", path = "macro", default-features = false }
iroha_futures = { version = "=2.0.0-pre-rc.22.0", path = "futures" }
iroha_genesis = { version = "=2.0.0-pre-rc.22.0", path = "genesis" }
iroha_ffi = { version = "=2.0.0-pre-rc.22.0", path = "ffi" }
iroha_version = { version = "=2.0.0-pre-rc.22.0", path = "version", default-features = false }
iroha_wasm_codec = { version = "=2.0.0-pre-rc.22.0", path = "wasm_codec" }
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.0", path = "wasm_builder" }

iroha_smart_contract = { version = "=2.0.0-pre-rc.22.0", path = "smart_contract" }
iroha_smart_contract_utils = { version = "=2.0.0-pre-rc.22.0", path = "smart_contract/utils" }

iroha_executor = { version = "=2.0.0-pre-rc.22.0", path = "smart_contract/executor" }
iroha_executor_data_model = { version = "=2.0.0-pre-rc.22.0", path = "smart_contract/executor/data_model" }

test_network = { version = "=2.0.0-pre-rc.22.0", path = "core/test_network" }
test_samples = { version = "=2.0.0-pre-rc.22.0", path = "test_samples" }
iroha_core = { version = "=2.0.0-pre-rc.22.1 ", path = "core" }

irohad = { version = "=2.0.0-pre-rc.22.1", path = "cli" }
iroha_torii = { version = "=2.0.0-pre-rc.22.1", path = "torii" }
iroha_torii_const = { version = "=2.0.0-pre-rc.22.1", path = "torii/const" }

iroha = { version = "=2.0.0-pre-rc.22.1", path = "client" }

iroha_macro_utils = { version = "=2.0.0-pre-rc.22.1", path = "macro/utils" }
iroha_telemetry = { version = "=2.0.0-pre-rc.22.1", path = "telemetry" }
iroha_p2p = { version = "=2.0.0-pre-rc.22.1", path = "p2p" }
iroha_primitives = { version = "=2.0.0-pre-rc.22.1", path = "primitives", default-features = false }
iroha_data_model = { version = "=2.0.0-pre-rc.22.1", path = "data_model", default-features = false }
iroha_config = { version = "=2.0.0-pre-rc.22.1", path = "config" }
iroha_config_base = { version = "=2.0.0-pre-rc.22.1", path = "config/base" }
iroha_schema_gen = { version = "=2.0.0-pre-rc.22.1", path = "schema/gen" }
iroha_schema = { version = "=2.0.0-pre-rc.22.1", path = "schema", default-features = false }
iroha_logger = { version = "=2.0.0-pre-rc.22.1", path = "logger" }
iroha_crypto = { version = "=2.0.0-pre-rc.22.1", path = "crypto", default-features = false }
iroha_macro = { version = "=2.0.0-pre-rc.22.1", path = "macro", default-features = false }
iroha_futures = { version = "=2.0.0-pre-rc.22.1", path = "futures" }
iroha_genesis = { version = "=2.0.0-pre-rc.22.1", path = "genesis" }
iroha_ffi = { version = "=2.0.0-pre-rc.22.1", path = "ffi" }
iroha_version = { version = "=2.0.0-pre-rc.22.1", path = "version", default-features = false }
iroha_wasm_codec = { version = "=2.0.0-pre-rc.22.1", path = "wasm_codec" }
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.1", path = "wasm_builder" }

iroha_smart_contract = { version = "=2.0.0-pre-rc.22.1", path = "smart_contract" }
iroha_smart_contract_utils = { version = "=2.0.0-pre-rc.22.1", path = "smart_contract/utils" }

iroha_executor = { version = "=2.0.0-pre-rc.22.1", path = "smart_contract/executor" }
iroha_executor_data_model = { version = "=2.0.0-pre-rc.22.1", path = "smart_contract/executor/data_model" }

test_network = { version = "=2.0.0-pre-rc.22.1", path = "core/test_network" }
test_samples = { version = "=2.0.0-pre-rc.22.1", path = "test_samples" }

proc-macro2 = "1.0.86"
syn = { version = "2.0.72", default-features = false }
Expand Down
14 changes: 7 additions & 7 deletions client/tests/integration/smartcontracts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace.package]
edition = "2021"
version = "2.0.0-pre-rc.22.0"
version = "2.0.0-pre-rc.22.1"
# TODO: teams are being deprecated update the authors URL
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]

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

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

parity-scale-codec = { version = "3.2.1", default-features = false }
anyhow = { version = "1.0.71", default-features = false }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, default-features = false }

[build-dependencies]
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.0", path = "../../../../../wasm_builder" }
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.1", path = "../../../../../wasm_builder" }
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, default-features = false }

[build-dependencies]
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.0", path = "../../../../../wasm_builder" }
iroha_wasm_builder = { version = "=2.0.0-pre-rc.22.1", path = "../../../../../wasm_builder" }
4 changes: 2 additions & 2 deletions default_executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "iroha_default_executor"

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

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

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

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

0 comments on commit b039de9

Please sign in to comment.