Skip to content

Commit

Permalink
bump packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Buckram123 committed Oct 7, 2024
1 parent ace1962 commit cf3e927
Show file tree
Hide file tree
Showing 16 changed files with 145 additions and 165 deletions.
166 changes: 81 additions & 85 deletions framework/Cargo.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.23.0"
version = "0.24.0"
authors = [
"CyberHoward <[email protected]>",
"Riada <[email protected]>",
Expand Down Expand Up @@ -81,14 +81,14 @@ ibc-host = { package = "abstract-ibc-host", path = "contracts/native/ibc-host" }
abstract-account = { path = "contracts/account", default-features = false }

abstract-ica = { path = "packages/abstract-ica" }
abstract-sdk = { version = "0.23.0", path = "packages/abstract-sdk" }
abstract-testing = { version = "0.23.0", path = "packages/abstract-testing" }
abstract-std = { version = "0.23.0", path = "packages/abstract-std" }
abstract-sdk = { version = "0.24.0", path = "packages/abstract-sdk" }
abstract-testing = { version = "0.24.0", path = "packages/abstract-testing" }
abstract-std = { version = "0.24.0", path = "packages/abstract-std" }

# These should remain fixed and don't need to be re-published (unless changes are made)
abstract-macros = { version = "0.23.0", path = "packages/abstract-macros" }
abstract-macros = { version = "0.24.0", path = "packages/abstract-macros" }

abstract-adapter-utils = { version = "0.23.0", path = "packages/standards/utils" }
abstract-adapter-utils = { version = "0.24.0", path = "packages/standards/utils" }
abstract-dex-standard = { path = "packages/standards/dex" }
abstract-staking-standard = { path = "packages/standards/staking" }

Expand Down
8 changes: 4 additions & 4 deletions framework/packages/abstract-adapter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abstract-adapter"
version = "0.23.0"
version = "0.24.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -29,9 +29,9 @@ abstract-std = { workspace = true }
abstract-testing = { workspace = true, optional = true }
cw-orch = { workspace = true }
# Keep this as a version and update when publishing new versions
abstract-interface = { path = "../../packages/abstract-interface", version = "0.23.0" }
abstract-ibc-client = { version = "0.23.0", path = "../../contracts/native/ibc-client", default-features = false }
abstract-ibc-host = { version = "0.23.0", path = "../../contracts/native/ibc-host", default-features = false }
abstract-interface = { path = "../../packages/abstract-interface", version = "0.24.0" }
abstract-ibc-client = { version = "0.24.0", path = "../../contracts/native/ibc-client", default-features = false }
abstract-ibc-host = { version = "0.24.0", path = "../../contracts/native/ibc-host", default-features = false }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
workspace-hack = { version = "0.1", path = "../../workspace-hack" }
Expand Down
6 changes: 3 additions & 3 deletions framework/packages/abstract-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abstract-app"
version = "0.23.0"
version = "0.24.0"
edition = { workspace = true }
license = { workspace = true }
description = "base app contract implementation"
Expand Down Expand Up @@ -31,8 +31,8 @@ abstract-std = { workspace = true }
abstract-testing = { workspace = true, optional = true }
cw-orch = { workspace = true }

abstract-interface = { version = "0.23.0", path = "../../packages/abstract-interface" }
abstract-ibc-host = { version = "0.23.0", path = "../../contracts/native/ibc-host", default-features = false }
abstract-interface = { version = "0.24.0", path = "../../packages/abstract-interface" }
abstract-ibc-host = { version = "0.24.0", path = "../../contracts/native/ibc-host", default-features = false }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
workspace-hack = { version = "0.1", path = "../../workspace-hack" }
Expand Down
4 changes: 2 additions & 2 deletions framework/packages/abstract-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abstract-client"
version = "0.23.0"
version = "0.24.0"
description = "A client oriented package for the Abstract Framework."
authors.workspace = true
edition.workspace = true
Expand All @@ -23,7 +23,7 @@ interchain = [
]

[dependencies]
abstract-interface = { version = "0.23.0", path = "../abstract-interface" }
abstract-interface = { version = "0.24.0", path = "../abstract-interface" }
cosmwasm-std.workspace = true
abstract-std.workspace = true
cw-orch.workspace = true
Expand Down
14 changes: 7 additions & 7 deletions framework/packages/abstract-interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abstract-interface"
version = "0.23.1"
version = "0.24.0"
edition = { workspace = true }
license = { workspace = true }
description = "Abstract deployment helpers with cw-orchestrator"
Expand Down Expand Up @@ -46,12 +46,12 @@ cw-orch-polytone = { workspace = true, optional = true }
rust-embed = { version = "8.3.0", features = ["include-exclude"] }

# Keep these here
module-factory = { version = "0.23.0", package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false }
ibc-client = { version = "0.23.0", package = "abstract-ibc-client", path = "../../contracts/native/ibc-client", default-features = false }
ibc-host = { version = "0.23.0", package = "abstract-ibc-host", path = "../../contracts/native/ibc-host", default-features = false }
ans-host = { version = "0.23.0", package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false }
registry = { version = "0.23.0", package = "abstract-registry", path = "../../contracts/native/registry", default-features = false }
account = { version = "0.23.0", package = "abstract-account", path = "../../contracts/account", default-features = false }
module-factory = { version = "0.24.0", package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false }
ibc-client = { version = "0.24.0", package = "abstract-ibc-client", path = "../../contracts/native/ibc-client", default-features = false }
ibc-host = { version = "0.24.0", package = "abstract-ibc-host", path = "../../contracts/native/ibc-host", default-features = false }
ans-host = { version = "0.24.0", package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false }
registry = { version = "0.24.0", package = "abstract-registry", path = "../../contracts/native/registry", default-features = false }
account = { version = "0.24.0", package = "abstract-account", path = "../../contracts/account", default-features = false }
workspace-hack = { version = "0.1", path = "../../workspace-hack" }

# Predictable abstract addresses
Expand Down
4 changes: 2 additions & 2 deletions framework/packages/abstract-standalone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abstract-standalone"
version = "0.23.0"
version = "0.24.0"
edition = { workspace = true }
license = { workspace = true }
description = "base standalone contract implementation"
Expand Down Expand Up @@ -29,7 +29,7 @@ abstract-std = { workspace = true }

# Interface
cw-orch = { workspace = true }
abstract-interface = { version = "0.23.0", path = "../../packages/abstract-interface" }
abstract-interface = { version = "0.24.0", path = "../../packages/abstract-interface" }

# Testing
abstract-testing = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion framework/packages/standards/dex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ abstract-std = { workspace = true }
abstract-sdk = { workspace = true }
abstract-adapter-utils = { workspace = true }
cw-orch = { workspace = true }
abstract-adapter = { version = "0.23.0", path = "../../abstract-adapter" }
abstract-adapter = { version = "0.24.0", path = "../../abstract-adapter" }

abstract-interface = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion framework/packages/standards/money-market/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ abstract-std = { workspace = true }
abstract-sdk = { workspace = true }
abstract-adapter-utils = { workspace = true }
cw-orch = { workspace = true }
abstract-adapter = { version = "0.23.0", path = "../../abstract-adapter" }
abstract-adapter = { version = "0.24.0", path = "../../abstract-adapter" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
workspace-hack = { version = "0.1", path = "../../../workspace-hack" }
2 changes: 1 addition & 1 deletion framework/packages/standards/staking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ abstract-std = { workspace = true }
abstract-sdk = { workspace = true }
abstract-adapter-utils = { workspace = true }
cw-orch = { workspace = true }
abstract-adapter = { version = "0.23.0", path = "../../abstract-adapter" }
abstract-adapter = { version = "0.24.0", path = "../../abstract-adapter" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
workspace-hack = { version = "0.1", path = "../../../workspace-hack" }
Expand Down
24 changes: 4 additions & 20 deletions framework/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ crunchy = { version = "0.2", features = ["std"] }
cw-orch-interchain-core = { version = "0.6", default-features = false, features = ["daemon"] }
cw1-whitelist = { version = "2", default-features = false, features = ["library"] }
der = { version = "0.7", default-features = false, features = ["oid", "pem", "std"] }
deranged = { version = "0.3", default-features = false, features = ["powerfmt", "std"] }
ecdsa = { version = "0.16", features = ["pem", "serde", "signing", "std", "verifying"] }
ed25519 = { version = "2", features = ["alloc", "serde"] }
ed25519-dalek = { version = "2", features = ["rand_core", "serde"] }
Expand All @@ -108,8 +107,7 @@ futures-task = { version = "0.3", default-features = false, features = ["std"] }
futures-util = { version = "0.3", features = ["channel", "io", "sink"] }
getrandom = { version = "0.2", default-features = false, features = ["js"] }
group = { version = "0.13", default-features = false, features = ["alloc"] }
hashbrown-582f2526e08bb6a0 = { package = "hashbrown", version = "0.14", features = ["raw"] }
hashbrown-5ef9efb8ec2df382 = { package = "hashbrown", version = "0.12", features = ["raw"] }
hashbrown = { version = "0.12", features = ["raw"] }
hyper = { version = "0.14", features = ["client", "http1", "http2", "runtime", "server", "stream"] }
ibc-proto = { version = "0.47", features = ["serde"] }
ibc-relayer-types = { version = "0.29", default-features = false, features = ["clock"] }
Expand Down Expand Up @@ -138,7 +136,6 @@ serde_json = { version = "1", features = ["alloc", "raw_value"] }
signature = { version = "2", default-features = false, features = ["digest", "rand_core", "std"] }
smallvec = { version = "1", default-features = false, features = ["const_new"] }
spki = { version = "0.7", default-features = false, features = ["pem", "std"] }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tendermint = { version = "0.38", features = ["secp256k1"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
time = { version = "0.3", features = ["macros", "parsing"] }
Expand All @@ -151,7 +148,6 @@ tracing = { version = "0.1", features = ["log"] }
tracing-core = { version = "0.1" }
unicode-normalization = { version = "0.1" }
url = { version = "2" }
uuid = { version = "1", features = ["v4"] }

[target.x86_64-unknown-linux-gnu.build-dependencies]
ahash = { version = "0.8" }
Expand All @@ -170,7 +166,6 @@ crunchy = { version = "0.2", features = ["std"] }
cw-orch-interchain-core = { version = "0.6", default-features = false, features = ["daemon"] }
cw1-whitelist = { version = "2", default-features = false, features = ["library"] }
der = { version = "0.7", default-features = false, features = ["oid", "pem", "std"] }
deranged = { version = "0.3", default-features = false, features = ["powerfmt", "std"] }
derive_more = { version = "0.99" }
ecdsa = { version = "0.16", features = ["pem", "serde", "signing", "std", "verifying"] }
ed25519 = { version = "2", features = ["alloc", "serde"] }
Expand All @@ -189,8 +184,7 @@ futures-task = { version = "0.3", default-features = false, features = ["std"] }
futures-util = { version = "0.3", features = ["channel", "io", "sink"] }
getrandom = { version = "0.2", default-features = false, features = ["js"] }
group = { version = "0.13", default-features = false, features = ["alloc"] }
hashbrown-582f2526e08bb6a0 = { package = "hashbrown", version = "0.14", features = ["raw"] }
hashbrown-5ef9efb8ec2df382 = { package = "hashbrown", version = "0.12", features = ["raw"] }
hashbrown = { version = "0.12", features = ["raw"] }
hyper = { version = "0.14", features = ["client", "http1", "http2", "runtime", "server", "stream"] }
ibc-proto = { version = "0.47", features = ["serde"] }
ibc-relayer-types = { version = "0.29", default-features = false, features = ["clock"] }
Expand Down Expand Up @@ -219,7 +213,6 @@ serde_json = { version = "1", features = ["alloc", "raw_value"] }
signature = { version = "2", default-features = false, features = ["digest", "rand_core", "std"] }
smallvec = { version = "1", default-features = false, features = ["const_new"] }
spki = { version = "0.7", default-features = false, features = ["pem", "std"] }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
syn-f595c2ba2a3f28df = { package = "syn", version = "2", default-features = false, features = ["visit"] }
tendermint = { version = "0.38", features = ["secp256k1"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
Expand All @@ -233,7 +226,6 @@ tracing = { version = "0.1", features = ["log"] }
tracing-core = { version = "0.1" }
unicode-normalization = { version = "0.1" }
url = { version = "2" }
uuid = { version = "1", features = ["v4"] }

[target.aarch64-apple-darwin.dependencies]
ahash = { version = "0.8" }
Expand All @@ -251,7 +243,6 @@ crunchy = { version = "0.2", features = ["std"] }
cw-orch-interchain-core = { version = "0.6", default-features = false, features = ["daemon"] }
cw1-whitelist = { version = "2", default-features = false, features = ["library"] }
der = { version = "0.7", default-features = false, features = ["oid", "pem", "std"] }
deranged = { version = "0.3", default-features = false, features = ["powerfmt", "std"] }
ecdsa = { version = "0.16", features = ["pem", "serde", "signing", "std", "verifying"] }
ed25519 = { version = "2", features = ["alloc", "serde"] }
ed25519-dalek = { version = "2", features = ["rand_core", "serde"] }
Expand All @@ -269,8 +260,7 @@ futures-task = { version = "0.3", default-features = false, features = ["std"] }
futures-util = { version = "0.3", features = ["channel", "io", "sink"] }
getrandom = { version = "0.2", default-features = false, features = ["js"] }
group = { version = "0.13", default-features = false, features = ["alloc"] }
hashbrown-582f2526e08bb6a0 = { package = "hashbrown", version = "0.14", features = ["raw"] }
hashbrown-5ef9efb8ec2df382 = { package = "hashbrown", version = "0.12", features = ["raw"] }
hashbrown = { version = "0.12", features = ["raw"] }
hyper = { version = "0.14", features = ["client", "http1", "http2", "runtime", "server", "stream"] }
ibc-proto = { version = "0.47", features = ["serde"] }
ibc-relayer-types = { version = "0.29", default-features = false, features = ["clock"] }
Expand Down Expand Up @@ -299,7 +289,6 @@ serde_json = { version = "1", features = ["alloc", "raw_value"] }
signature = { version = "2", default-features = false, features = ["digest", "rand_core", "std"] }
smallvec = { version = "1", default-features = false, features = ["const_new"] }
spki = { version = "0.7", default-features = false, features = ["pem", "std"] }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tendermint = { version = "0.38", features = ["secp256k1"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
time = { version = "0.3", features = ["macros", "parsing"] }
Expand All @@ -312,7 +301,6 @@ tracing = { version = "0.1", features = ["log"] }
tracing-core = { version = "0.1" }
unicode-normalization = { version = "0.1" }
url = { version = "2" }
uuid = { version = "1", features = ["v4"] }

[target.aarch64-apple-darwin.build-dependencies]
ahash = { version = "0.8" }
Expand All @@ -330,7 +318,6 @@ crunchy = { version = "0.2", features = ["std"] }
cw-orch-interchain-core = { version = "0.6", default-features = false, features = ["daemon"] }
cw1-whitelist = { version = "2", default-features = false, features = ["library"] }
der = { version = "0.7", default-features = false, features = ["oid", "pem", "std"] }
deranged = { version = "0.3", default-features = false, features = ["powerfmt", "std"] }
derive_more = { version = "0.99" }
ecdsa = { version = "0.16", features = ["pem", "serde", "signing", "std", "verifying"] }
ed25519 = { version = "2", features = ["alloc", "serde"] }
Expand All @@ -349,8 +336,7 @@ futures-task = { version = "0.3", default-features = false, features = ["std"] }
futures-util = { version = "0.3", features = ["channel", "io", "sink"] }
getrandom = { version = "0.2", default-features = false, features = ["js"] }
group = { version = "0.13", default-features = false, features = ["alloc"] }
hashbrown-582f2526e08bb6a0 = { package = "hashbrown", version = "0.14", features = ["raw"] }
hashbrown-5ef9efb8ec2df382 = { package = "hashbrown", version = "0.12", features = ["raw"] }
hashbrown = { version = "0.12", features = ["raw"] }
hyper = { version = "0.14", features = ["client", "http1", "http2", "runtime", "server", "stream"] }
ibc-proto = { version = "0.47", features = ["serde"] }
ibc-relayer-types = { version = "0.29", default-features = false, features = ["clock"] }
Expand Down Expand Up @@ -379,7 +365,6 @@ serde_json = { version = "1", features = ["alloc", "raw_value"] }
signature = { version = "2", default-features = false, features = ["digest", "rand_core", "std"] }
smallvec = { version = "1", default-features = false, features = ["const_new"] }
spki = { version = "0.7", default-features = false, features = ["pem", "std"] }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
syn-f595c2ba2a3f28df = { package = "syn", version = "2", default-features = false, features = ["visit"] }
tendermint = { version = "0.38", features = ["secp256k1"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
Expand All @@ -393,6 +378,5 @@ tracing = { version = "0.1", features = ["log"] }
tracing-core = { version = "0.1" }
unicode-normalization = { version = "0.1" }
url = { version = "2" }
uuid = { version = "1", features = ["v4"] }

### END HAKARI SECTION
18 changes: 9 additions & 9 deletions integrations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.23.0"
version = "0.24.0"
authors = [
"CyberHoward <[email protected]>",
"Riada <[email protected]>",
Expand Down Expand Up @@ -52,15 +52,15 @@ semver = "1.0"

## crates in order of publishing ## see docs/Publishing.md

abstract-interface = { version = "0.23.0" }
abstract-adapter = { version = "0.23.0" }
abstract-sdk = { version = "0.23.0" }
abstract-std = { version = "0.23.0" }
abstract-interface = { version = "0.24.0" }
abstract-adapter = { version = "0.24.0" }
abstract-sdk = { version = "0.24.0" }
abstract-std = { version = "0.24.0" }

abstract-adapter-utils = { version = "0.23.0" }
abstract-dex-standard = { version = "0.23.0" }
abstract-money-market-standard = { version = "0.23.0" }
abstract-staking-standard = { version = "0.23.0" }
abstract-adapter-utils = { version = "0.24.0" }
abstract-dex-standard = { version = "0.24.0" }
abstract-money-market-standard = { version = "0.24.0" }
abstract-staking-standard = { version = "0.24.0" }

# TODO: REMOVE As soon as new dex-standard published
[patch.crates-io]
Expand Down
Loading

0 comments on commit cf3e927

Please sign in to comment.