Skip to content

Commit

Permalink
Update cw-orch
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski committed May 1, 2024
1 parent 9d82f3c commit 8a88bf9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 30 deletions.
2 changes: 1 addition & 1 deletion framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ protobuf = { version = "2", features = ["with-bytes"] }
clap = { version = "4.0.32", features = ["derive"] }
semver = "1.0"
cw-semver = { version = "1.0" }
cw-orch = { version = "0.22.0-rc1" }
cw-orch = { version = "0.22.0" }
tokio = { version = "1.4", features = ["full"] }

polytone = { package = "abstract-polytone", version = "1.0.5" }
Expand Down
6 changes: 3 additions & 3 deletions framework/packages/abstract-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ cw-ownable.workspace = true
cw-asset = { workspace = true, optional = true }

# For Cw20 builder
cw-plus-interface = { package = "abstract-cw-plus-interface", version = "2.0.0-rc", optional = true }
cw20 = { package = "abstract-cw20", version = "2.0.0-rc", optional = true }
cw20-base = { package = "abstract-cw20-base", version = "2.0.0-rc", optional = true }
cw-plus-interface = { package = "abstract-cw-plus-interface", version = "2.0.0", optional = true }
cw20 = { package = "abstract-cw20", version = "2.0.0", optional = true }
cw20-base = { package = "abstract-cw20-base", version = "2.0.0", optional = true }

[dev-dependencies]
abstract-testing.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions integrations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ cosmwasm-std = { version = "1.2" }
cosmwasm-schema = { version = "1.2" }
cw-storage-plus = "1.2.0"
cw2 = "1.1.2"
cw-plus-interface = { package = "abstract-cw-plus-interface", version = "2.0.0-rc" }
cw20 = { package = "abstract-cw20", version = "2.0.0-rc" }
cw20-base = { package = "abstract-cw20-base", version = "2.0.0-rc" }
cw-plus-interface = { package = "abstract-cw-plus-interface", version = "2.0.0" }
cw20 = { package = "abstract-cw20", version = "2.0.0" }
cw20-base = { package = "abstract-cw20-base", version = "2.0.0" }
cw-utils = "1.0"
cw-controllers = "1.1"
cw-ownable = { version = "0.5" }
cw-address-like = { version = "1.0" }
cw-asset = { version = "3.0" }
cw-semver = { version = "1.0" }
cw-orch = { version = "0.22.0-rc" }
cw-orch = { version = "0.22.0" }

anyhow = "1.0"

Expand Down
17 changes: 5 additions & 12 deletions interchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,12 @@ cw-semver = { version = "1.0" }
tokio = { version = "1.33.0", features = ["full"] }

polytone = { package = "abstract-polytone", version = "1.0.5" }
polytone-note = { package = "abstract-polytone-note", version = "2.0.0-rc" }
cw-orch-polytone = { package = "abstract-cw-orch-polytone", version = "2.0.0-rc" }
polytone-note = { package = "abstract-polytone-note", version = "2.0.0" }
cw-orch-polytone = { package = "abstract-cw-orch-polytone", version = "2.0.0" }

# cw-orch = { package = "cw-orch-interchain", git = "ssh://[email protected]/AbstractSDK/cw-orch-interchain.git", tag = "v0.22.0-rc" }
cw-orch = { package = "cw-orch-interchain", git = "ssh://[email protected]/AbstractSDK/cw-orch-interchain.git", rev = "07b2e96" }
cw-orch-proto = { git = "ssh://[email protected]/AbstractSDK/cw-orch-interchain.git", rev = "07b2e96" }
cw-orch-clone-testing = { git = "ssh://[email protected]/AbstractSDK/cw-orch-interchain.git", rev = "07b2e96" }
cw-orch = { package = "cw-orch-interchain", git = "ssh://[email protected]/AbstractSDK/cw-orch-interchain.git", tag = "v0.22.0" }
cw-orch-proto = { git = "ssh://[email protected]/AbstractSDK/cw-orch-interchain.git", tag = "v0.22.0" }
cw-orch-clone-testing = { git = "ssh://[email protected]/AbstractSDK/cw-orch-interchain.git", tag = "v0.22.0" }
# Keep these as path, creates cirular dependency otherwise
# Only need to re-publish all contracts if a re-publish of abstract-interface is required
abstract-interface = { version = "0.21.0", path = "../framework/packages/abstract-interface" }
Expand Down Expand Up @@ -101,12 +100,6 @@ abstract-adapter-utils = { path = "../framework/packages/standards/utils" }
abstract-dex-standard = { path = "../framework/packages/standards/dex" }
abstract-staking-standard = { path = "../framework/packages/standards/staking" }

# cw-orch stabilization - TODO
cw-orch-core = { git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "stabilization/cw-orch-core" }
cw-orch-networks = { git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "stabilization/cw-orch-core" }
cw-orch-daemon = { git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "stabilization/cw-orch-core" }
cw-orch = { git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "stabilization/cw-orch-core" }

# Backup release profile, will result in warnings during optimization
[profile.release]
rpath = false
Expand Down
14 changes: 4 additions & 10 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ cw-controllers = { version = "1.0" }
cw-utils = { version = "1.0" }
cw-storage-plus = "1.2.0"
cw2 = { version = "1.0" }
cw-plus-interface = { package = "abstract-cw-plus-interface", version = "2.0.0-rc" }
cw-plus-interface = { package = "abstract-cw-plus-interface", version = "2.0.0" }
cw20-base = { package = "abstract-cw20-base", features = [
"library",
], version = "2.0.0-rc" }
cw20 = { package = "abstract-cw20", version = "2.0.0-rc" }
], version = "2.0.0" }
cw20 = { package = "abstract-cw20", version = "2.0.0" }

cw-asset = { version = "3.0" }
cw-ownable = { version = "0.5" }
Expand All @@ -43,7 +43,7 @@ chrono = { version = "0.4.31", default-features = false }
clap = { version = "4.0.32", features = ["derive"] }
semver = "1.0"
cw-semver = { version = "1.0" }
cw-orch = { version = "0.22.0-rc" }
cw-orch = { version = "0.22.0" }
tokio = { version = "1.4", features = ["full"] }

## crates in order of publishing ## see docs/Publishing.md
Expand Down Expand Up @@ -100,12 +100,6 @@ abstract-money-market-standard = { path = "../framework/packages/standards/money
abstract-staking-standard = { path = "../framework/packages/standards/staking" }
abstract-client = { path = "../framework/packages/abstract-client" }

# cw-orch stabilization - TODO
cw-orch-core = { git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "stabilization/cw-orch-core" }
cw-orch-networks = { git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "stabilization/cw-orch-core" }
cw-orch-daemon = { git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "stabilization/cw-orch-core" }
cw-orch = { git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "stabilization/cw-orch-core" }

# Backup release profile, will result in warnings during optimization
[profile.release]
rpath = false
Expand Down

0 comments on commit 8a88bf9

Please sign in to comment.