Skip to content

Commit 0577cd3

Browse files
authored
Published v0.26.0 (#507)
* Published new version * Clippy
1 parent 1fae9a9 commit 0577cd3

File tree

15 files changed

+65
-339
lines changed

15 files changed

+65
-339
lines changed

CHANGELOG.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,25 @@
22

33
## Unpublished
44

5-
- Add methods to set the private key and mnemonic of an existing sender
6-
- Deprecate `authz_granter` and `fee_granter` on `Daemon` struct
7-
- Add a method on `TxHandler` to select instantiation permissions on Wasm upload
8-
- Adds an `upload_wasm` function to CosmosSender to upload wasm code associated to no Contract structure
9-
- Update syn to 2.0
10-
- Added cw-plus orchestrator interface to the repo. Pacing the way for more integrations inside this repository in the future
11-
- Add easier way to get PublicKey for `cw_orch_daemon::Wallet`
12-
- Added Cosmos hub Testnet
5+
6+
### Breaking
7+
8+
9+
## 0.26.0 [8. October 2024]
10+
11+
- [daemon] Add methods to set the private key and mnemonic of an existing sender
12+
- [daemon] Deprecate `authz_granter` and `fee_granter` on `Daemon` struct
13+
- [core] Add a method on `TxHandler` to select instantiation permissions on Wasm upload
14+
- [daemon] Adds an `upload_wasm` function to CosmosSender to upload wasm code associated to no Contract structure
15+
- [Macros] Update syn to 2.0
16+
- [Integrations] Added cw-plus orchestrator interface to the repo. Pacing the way for more integrations inside this repository in the future
17+
- [daemon] Add easier way to get PublicKey for `cw_orch_daemon::Wallet`
18+
- [networks] Added Cosmos hub Testnet
1319

1420
### Breaking
1521

16-
- Added Support for more mnemonic lengths (at least 24 and 12). This is breaking because of how the mnemonic words are stored and retrieved (`words` method on `PrivateKey`) (published in cw-orch-daemon 0.26.0)
17-
- Added `Signer` trait for being able to re-use the signing/broadcast flow (Unpublished)
22+
- [Daemon] Added Support for more mnemonic lengths (at least 24 and 12). This is breaking because of how the mnemonic words are stored and retrieved (`words` method on `PrivateKey`)
23+
- [Daemon] Added `Signer` trait for being able to re-use the signing/broadcast flow
1824

1925
## 0.25.0
2026

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ members = [
1818
]
1919
exclude = [
2020
"test_contracts/compatibility-test", # TODO: add new after cw-orch-core 2.0.0 as it's breaking, it shouldn't be compatible
21-
"packages/interchain/proto", # TODO: Release cw-orch-proto after osmosis-std reaches prost 0.13
2221
]
2322
resolver = "2"
2423

@@ -47,12 +46,12 @@ anyhow = "1.0"
4746
serde = { version = "1.0.208", default-features = false, features = ["derive"] }
4847
tokio = { version = "1.39", features = ["full"] }
4948

50-
cw-orch = { path = "./cw-orch", version = "0.25.0" }
51-
cw-orch-daemon = { path = "./cw-orch-daemon", version = "0.26.0" }
49+
cw-orch = { path = "./cw-orch", version = "0.26.0" }
50+
cw-orch-daemon = { path = "./cw-orch-daemon", version = "0.27.0" }
5251
cw-orch-core = { path = "packages/cw-orch-core", version = "2.1.0" }
5352
cw-orch-traits = { path = "packages/cw-orch-traits", version = "0.24.0" }
54-
cw-orch-mock = { path = "packages/cw-orch-mock", version = "0.24.0" }
55-
cw-orch-networks = { path = "packages/cw-orch-networks", version = "0.24.0" }
53+
cw-orch-mock = { path = "packages/cw-orch-mock", version = "0.24.2" }
54+
cw-orch-networks = { path = "packages/cw-orch-networks", version = "0.24.3" }
5655

5756
# Macros
5857
cw-orch-contract-derive = { path = "packages/macros/cw-orch-contract-derive", version = "0.21.0" }
@@ -61,16 +60,17 @@ cw-orch-fns-derive = { path = "packages/macros/cw-orch-fns-derive", version = "0
6160
# Extensions
6261
# cw-orch-osmosis-test-tube = { version = "0.3.0", path = "packages/cw-orch-osmosis-test-tube" }
6362

63+
#Clone Testing
64+
cw-orch-clone-testing = { version = "0.8.0", path = "packages/clone-testing" }
65+
6466
# Interchain
65-
cw-orch-interchain = { path = "cw-orch-interchain", version = "0.5.0" }
66-
cw-orch-interchain-core = { path = "packages/interchain/interchain-core", version = "0.6.0" }
67-
cw-orch-interchain-daemon = { path = "packages/interchain/interchain-daemon", version = "0.6.0" }
68-
cw-orch-interchain-mock = { path = "packages/interchain/interchain-mock", version = "0.6.0" }
69-
cw-orch-starship = { path = "packages/interchain/starship", version = "0.5.0" }
70-
# cw-orch-proto = { path = "packages/interchain/proto", version = "0.5.0" } # prost, tonic, cosmrs bump locked by osmosis (we use it for tokenfactory)
67+
cw-orch-interchain = { path = "cw-orch-interchain", version = "0.6.0" }
68+
cw-orch-interchain-core = { path = "packages/interchain/interchain-core", version = "0.7.0" }
69+
cw-orch-interchain-daemon = { path = "packages/interchain/interchain-daemon", version = "0.7.0" }
70+
cw-orch-interchain-mock = { path = "packages/interchain/interchain-mock", version = "0.7.0" }
71+
cw-orch-starship = { path = "packages/interchain/starship", version = "0.6.0" }
72+
cw-orch-proto = { path = "packages/interchain/proto", version = "0.7.0" }
7173

72-
#Clone Testing
73-
# cw-orch-clone-testing = { version = "0.6.1", path = "packages/clone-testing" }
7474

7575
thiserror = { version = "1.0.63" }
7676
sha2 = { version = "0.10.8" }

cw-orch-daemon/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-daemon"
3-
version = "0.26.0"
3+
version = "0.27.0"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }

cw-orch-interchain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-interchain"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }

cw-orch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }
@@ -100,6 +100,6 @@ mock-contract = { path = "../contracts-ws/contracts/mock_contract" }
100100
mock-contract-u64 = { path = "../contracts-ws/contracts/mock_contract_u64" }
101101
serde_json = { workspace = true }
102102
dotenv = "0.15.0"
103-
osmosis-std = "0.25.0"
103+
osmosis-std = "0.26.0"
104104
prost = { workspace = true }
105105
prost-types = { workspace = true }

packages/clone-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-clone-testing"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

packages/cw-orch-networks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-networks"
3-
version = "0.24.2"
3+
version = "0.24.3"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }

packages/interchain/interchain-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-interchain-core"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

packages/interchain/interchain-daemon/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-interchain-daemon"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
description = "An interchain intergration crate for interacting with actual chain nodes (via gRPC)"
55
authors.workspace = true
66
edition.workspace = true

packages/interchain/interchain-mock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw-orch-interchain-mock"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

packages/interchain/proto/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cw-orch-proto"
33
description = "A helper crate for interaction with protos from different chains. Mostly used for handling cw20 coins and ibc transfers"
4-
version = "0.6.0"
4+
version = "0.7.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -16,14 +16,15 @@ cw-orch-core = { workspace = true }
1616

1717
anyhow = { workspace = true }
1818

19-
cosmrs = { workspace = true }
19+
ibc-proto = { workspace = true }
20+
prost-types = { workspace = true }
21+
prost = { workspace = true }
2022
cosmwasm-std = { workspace = true }
2123
ibc-relayer-types = { workspace = true }
2224
log = { workspace = true }
23-
prost = { workspace = true }
2425
tokio = { workspace = true }
2526
tonic = { workspace = true }
26-
osmosis-std = { version = "0.25.0" }
27+
osmosis-std = { version = "0.26.0" }
2728

2829
[dev-dependencies]
2930
cw-orch-starship = { workspace = true }

0 commit comments

Comments
 (0)