Skip to content

Commit

Permalink
chore: bump version to 2.0.0-pre-rc.21.3
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 May 8, 2024
1 parent 5a328e9 commit 7fa694c
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 52 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [2.0.0-pre-rc.21.3] - 2024-05-08

### Fixed

- replace RawGenesisBlock with RawGenesisBlockFile in schema

## [2.0.0-pre-rc.21.2] - 2024-05-03

### Fixed
Expand Down
80 changes: 40 additions & 40 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.21.2"
version = "2.0.0-pre-rc.21.3"
# TODO: teams are being deprecated update the authors URL
authors = ["Iroha 2 team </~https://github.com/orgs/soramitsu/teams/iroha2>"]

Expand All @@ -15,45 +15,45 @@ categories = ["cryptography::cryptocurrencies"]

[workspace.dependencies]
iroha = { path = "cli" }
iroha_torii = { version = "=2.0.0-pre-rc.21.2", path = "torii" }
iroha_torii_derive = { version = "=2.0.0-pre-rc.21.2", path = "torii/derive" }
iroha_torii_const = { version = "=2.0.0-pre-rc.21.2", path = "torii/const" }
iroha_macro_utils = { version = "=2.0.0-pre-rc.21.2", path = "macro/utils" }
iroha_telemetry = { version = "=2.0.0-pre-rc.21.2", path = "telemetry" }
iroha_telemetry_derive = { version = "=2.0.0-pre-rc.21.2", path = "telemetry/derive" }
iroha_p2p = { version = "=2.0.0-pre-rc.21.2", path = "p2p" }
iroha_core = { version = "=2.0.0-pre-rc.21.2 ", path = "core" }
iroha_primitives = { version = "=2.0.0-pre-rc.21.2", path = "primitives", default-features = false }
iroha_primitives_derive = { version = "=2.0.0-pre-rc.21.2", path = "primitives/derive" }
iroha_data_model = { version = "=2.0.0-pre-rc.21.2", path = "data_model", default-features = false }
iroha_data_model_derive = { version = "=2.0.0-pre-rc.21.2", path = "data_model/derive" }
iroha_client = { version = "=2.0.0-pre-rc.21.2", path = "client" }
iroha_config = { version = "=2.0.0-pre-rc.21.2", path = "config" }
iroha_config_base = { version = "=2.0.0-pre-rc.21.2", path = "config/base" }
iroha_schema_gen = { version = "=2.0.0-pre-rc.21.2", path = "schema/gen" }
iroha_schema = { version = "=2.0.0-pre-rc.21.2", path = "schema", default-features = false }
iroha_schema_derive = { version = "=2.0.0-pre-rc.21.2", path = "schema/derive" }
iroha_logger = { version = "=2.0.0-pre-rc.21.2", path = "logger" }
iroha_crypto = { version = "=2.0.0-pre-rc.21.2", path = "crypto", default-features = false }
iroha_macro = { version = "=2.0.0-pre-rc.21.2", path = "macro", default-features = false }
iroha_derive = { version = "=2.0.0-pre-rc.21.2", path = "macro/derive" }
iroha_futures = { version = "=2.0.0-pre-rc.21.2", path = "futures" }
iroha_futures_derive = { version = "=2.0.0-pre-rc.21.2", path = "futures/derive" }
iroha_genesis = { version = "=2.0.0-pre-rc.21.2", path = "genesis" }
iroha_ffi = { version = "=2.0.0-pre-rc.21.2", path = "ffi" }
iroha_ffi_derive = { version = "=2.0.0-pre-rc.21.2", path = "ffi/derive" }
iroha_version = { version = "=2.0.0-pre-rc.21.2", path = "version", default-features = false }
iroha_version_derive = { version = "=2.0.0-pre-rc.21.2", path = "version/derive", default-features = false }
iroha_wasm_codec = { version = "=2.0.0-pre-rc.21.2", path = "wasm_codec" }
iroha_wasm_builder = { version = "=2.0.0-pre-rc.21.2", path = "wasm_builder" }

iroha_smart_contract = { version = "=2.0.0-pre-rc.21.2", path = "smart_contract" }
iroha_smart_contract_derive = { version = "=2.0.0-pre-rc.21.2", path = "smart_contract/derive" }
iroha_smart_contract_utils = { version = "=2.0.0-pre-rc.21.2", path = "smart_contract/utils" }
iroha_executor_derive = { version = "=2.0.0-pre-rc.21.2", path = "smart_contract/executor/derive" }
iroha_trigger_derive = { version = "=2.0.0-pre-rc.21.2", path = "smart_contract/trigger/derive" }

test_network = { version = "=2.0.0-pre-rc.21.2", path = "core/test_network" }
iroha_torii = { version = "=2.0.0-pre-rc.21.3", path = "torii" }
iroha_torii_derive = { version = "=2.0.0-pre-rc.21.3", path = "torii/derive" }
iroha_torii_const = { version = "=2.0.0-pre-rc.21.3", path = "torii/const" }
iroha_macro_utils = { version = "=2.0.0-pre-rc.21.3", path = "macro/utils" }
iroha_telemetry = { version = "=2.0.0-pre-rc.21.3", path = "telemetry" }
iroha_telemetry_derive = { version = "=2.0.0-pre-rc.21.3", path = "telemetry/derive" }
iroha_p2p = { version = "=2.0.0-pre-rc.21.3", path = "p2p" }
iroha_core = { version = "=2.0.0-pre-rc.21.3 ", path = "core" }
iroha_primitives = { version = "=2.0.0-pre-rc.21.3", path = "primitives", default-features = false }
iroha_primitives_derive = { version = "=2.0.0-pre-rc.21.3", path = "primitives/derive" }
iroha_data_model = { version = "=2.0.0-pre-rc.21.3", path = "data_model", default-features = false }
iroha_data_model_derive = { version = "=2.0.0-pre-rc.21.3", path = "data_model/derive" }
iroha_client = { version = "=2.0.0-pre-rc.21.3", path = "client" }
iroha_config = { version = "=2.0.0-pre-rc.21.3", path = "config" }
iroha_config_base = { version = "=2.0.0-pre-rc.21.3", path = "config/base" }
iroha_schema_gen = { version = "=2.0.0-pre-rc.21.3", path = "schema/gen" }
iroha_schema = { version = "=2.0.0-pre-rc.21.3", path = "schema", default-features = false }
iroha_schema_derive = { version = "=2.0.0-pre-rc.21.3", path = "schema/derive" }
iroha_logger = { version = "=2.0.0-pre-rc.21.3", path = "logger" }
iroha_crypto = { version = "=2.0.0-pre-rc.21.3", path = "crypto", default-features = false }
iroha_macro = { version = "=2.0.0-pre-rc.21.3", path = "macro", default-features = false }
iroha_derive = { version = "=2.0.0-pre-rc.21.3", path = "macro/derive" }
iroha_futures = { version = "=2.0.0-pre-rc.21.3", path = "futures" }
iroha_futures_derive = { version = "=2.0.0-pre-rc.21.3", path = "futures/derive" }
iroha_genesis = { version = "=2.0.0-pre-rc.21.3", path = "genesis" }
iroha_ffi = { version = "=2.0.0-pre-rc.21.3", path = "ffi" }
iroha_ffi_derive = { version = "=2.0.0-pre-rc.21.3", path = "ffi/derive" }
iroha_version = { version = "=2.0.0-pre-rc.21.3", path = "version", default-features = false }
iroha_version_derive = { version = "=2.0.0-pre-rc.21.3", path = "version/derive", default-features = false }
iroha_wasm_codec = { version = "=2.0.0-pre-rc.21.3", path = "wasm_codec" }
iroha_wasm_builder = { version = "=2.0.0-pre-rc.21.3", path = "wasm_builder" }

iroha_smart_contract = { version = "=2.0.0-pre-rc.21.3", path = "smart_contract" }
iroha_smart_contract_derive = { version = "=2.0.0-pre-rc.21.3", path = "smart_contract/derive" }
iroha_smart_contract_utils = { version = "=2.0.0-pre-rc.21.3", path = "smart_contract/utils" }
iroha_executor_derive = { version = "=2.0.0-pre-rc.21.3", path = "smart_contract/executor/derive" }
iroha_trigger_derive = { version = "=2.0.0-pre-rc.21.3", path = "smart_contract/trigger/derive" }

test_network = { version = "=2.0.0-pre-rc.21.3", path = "core/test_network" }
proc-macro2 = "1.0.81"
syn = { version = "2.0.60", default-features = false }
quote = "1.0.36"
Expand Down
10 changes: 5 additions & 5 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.21.2"
version = "2.0.0-pre-rc.21.3"
# TODO: teams are being deprecated update the authors URL
authors = ["Iroha 2 team </~https://github.com/orgs/soramitsu/teams/iroha2>"]

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

[workspace.dependencies]
iroha_smart_contract = { version = "=2.0.0-pre-rc.21.2", path = "../../../../smart_contract", features = ["debug"]}
iroha_trigger = { version = "=2.0.0-pre-rc.21.2", path = "../../../../smart_contract/trigger", features = ["debug"]}
iroha_executor = { version = "=2.0.0-pre-rc.21.2", path = "../../../../smart_contract/executor" }
iroha_schema = { version = "=2.0.0-pre-rc.21.2", path = "../../../../schema" }
iroha_smart_contract = { version = "=2.0.0-pre-rc.21.3", path = "../../../../smart_contract", features = ["debug"]}
iroha_trigger = { version = "=2.0.0-pre-rc.21.3", path = "../../../../smart_contract/trigger", features = ["debug"]}
iroha_executor = { version = "=2.0.0-pre-rc.21.3", path = "../../../../smart_contract/executor" }
iroha_schema = { version = "=2.0.0-pre-rc.21.3", path = "../../../../schema" }

parity-scale-codec = { version = "3.2.1", default-features = false }
anyhow = { version = "1.0.71", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions configs/swarm/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: '3.8'
services:
iroha0:
image: hyperledger/iroha2:dev
image: hyperledger/iroha2:main
platform: linux/amd64
environment:
CHAIN_ID: 00000000-0000-0000-0000-000000000000
Expand Down Expand Up @@ -32,7 +32,7 @@ services:
retries: 30
start_period: 4s
iroha1:
image: hyperledger/iroha2:dev
image: hyperledger/iroha2:main
platform: linux/amd64
environment:
CHAIN_ID: 00000000-0000-0000-0000-000000000000
Expand All @@ -56,7 +56,7 @@ services:
retries: 30
start_period: 4s
iroha2:
image: hyperledger/iroha2:dev
image: hyperledger/iroha2:main
platform: linux/amd64
environment:
CHAIN_ID: 00000000-0000-0000-0000-000000000000
Expand All @@ -80,7 +80,7 @@ services:
retries: 30
start_period: 4s
iroha3:
image: hyperledger/iroha2:dev
image: hyperledger/iroha2:main
platform: linux/amd64
environment:
CHAIN_ID: 00000000-0000-0000-0000-000000000000
Expand Down
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.21.2"
version = "2.0.0-pre-rc.21.3"
# 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.21.2", path = "../smart_contract/executor", features = ["debug"] }
iroha_executor = { version = "2.0.0-pre-rc.21.3", path = "../smart_contract/executor", features = ["debug"] }
getrandom = { version = "0.2", features = ["custom"] }

lol_alloc = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion wasm_codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license.workspace = true
workspace = true

[dependencies]
iroha_core_wasm_codec_derive = { version = "=2.0.0-pre-rc.21.2", path = "derive" }
iroha_core_wasm_codec_derive = { version = "=2.0.0-pre-rc.21.3", path = "derive" }

thiserror = { workspace = true }
wasmtime = { workspace = true }
Expand Down

0 comments on commit 7fa694c

Please sign in to comment.