Skip to content

Commit

Permalink
Update v0.24.1 beta.1 (#498)
Browse files Browse the repository at this point in the history
* bump versions

* update publish script

* ica client specify version

* specify version of cosmos-sdk-proto

* update publish script

* revert clone testing load
  • Loading branch information
Buckram123 authored Oct 15, 2024
1 parent 6d9cebe commit ddd18f8
Show file tree
Hide file tree
Showing 22 changed files with 191 additions and 123 deletions.
81 changes: 41 additions & 40 deletions framework/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 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.24.0"
version = "0.24.1-beta.1"
authors = [
"CyberHoward <[email protected]>",
"Riada <[email protected]>",
Expand Down Expand Up @@ -80,15 +80,15 @@ 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.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" }
abstract-ica = { version = "0.24.1-beta.1", path = "packages/abstract-ica" }
abstract-sdk = { version = "0.24.1-beta.1", path = "packages/abstract-sdk" }
abstract-testing = { version = "0.24.1-beta.1", path = "packages/abstract-testing" }
abstract-std = { version = "0.24.1-beta.1", path = "packages/abstract-std" }

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

abstract-adapter-utils = { version = "0.24.0", path = "packages/standards/utils" }
abstract-adapter-utils = { version = "0.24.1-beta.1", path = "packages/standards/utils" }
abstract-dex-standard = { path = "packages/standards/dex" }
abstract-staking-standard = { path = "packages/standards/staking" }

Expand Down
2 changes: 1 addition & 1 deletion framework/contracts/account/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ p256 = { version = "0.13.2", features = [
], optional = true }
url = { version = "2.5.2", default-features = false, optional = true }
ripemd = { version = "0.1.3", default-features = false, optional = true }
cosmos-sdk-proto = { git = "https://github.com/burnt-labs/cosmos-rust.git", rev = "d3b51db49b894f1c6b7836bb0a7b14f54f1dfb26", default-features = false, features = [
cosmos-sdk-proto = { version = "0.24.0-pre", git = "https://github.com/burnt-labs/cosmos-rust.git", rev = "d3b51db49b894f1c6b7836bb0a7b14f54f1dfb26", default-features = false, features = [
"std",
"cosmwasm",
"xion",
Expand Down
2 changes: 1 addition & 1 deletion framework/contracts/native/ica-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "abstract-ica-client"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
description = "Abstract IBC Client Contract"
description = "Abstract ICA Client Contract"
license = { workspace = true }
readme = "README.md"
repository = "https://github.com/AbstractSDK/abstract"
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.24.0"
version = "0.24.1-beta.1"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -32,9 +32,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.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 }
abstract-interface = { path = "../../packages/abstract-interface", version = "0.24.1-beta.1" }
abstract-ibc-client = { version = "0.24.1-beta.1", path = "../../contracts/native/ibc-client", default-features = false }
abstract-ibc-host = { version = "0.24.1-beta.1", 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
Loading

0 comments on commit ddd18f8

Please sign in to comment.