Skip to content

Commit 54ddd19

Browse files
committed
Changed versions
1 parent 9f7bc8f commit 54ddd19

File tree

17 files changed

+181
-228
lines changed

17 files changed

+181
-228
lines changed

framework/Cargo.lock

Lines changed: 23 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

framework/Cargo.toml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ homepage = "https://abstract.money"
2828
keywords = ["cosmos", "cosmwasm", "framework"]
2929
license = "LGPL-3.0"
3030
repository = "https://github.com/AbstractSDK/abstract"
31-
version = "0.25.0"
31+
version = "0.26.0"
3232

3333
[workspace.dependencies]
3434
cosmwasm-schema = { version = "2.0" }
@@ -82,17 +82,17 @@ ibc-host = { package = "abstract-ibc-host", path = "contracts/native/ibc-host"
8282

8383
abstract-account = { path = "contracts/account", default-features = false }
8484

85-
abstract-ica = { version = "0.25.0", path = "packages/abstract-ica" }
86-
abstract-sdk = { version = "0.25.0", path = "packages/abstract-sdk" }
87-
abstract-std = { version = "0.25.0", path = "packages/abstract-std" }
88-
abstract-testing = { version = "0.25.0", path = "packages/abstract-testing" }
89-
abstract-xion = { package = "account", version = "0.1.0", git = "https://github.com/abstractsdk/xion-contracts", features = ["library"], branch = "fix-for-abstract" }
85+
abstract-ica = { version = "0.26.0", path = "packages/abstract-ica" }
86+
abstract-sdk = { version = "0.26.0", path = "packages/abstract-sdk" }
87+
abstract-std = { version = "0.26.0", path = "packages/abstract-std" }
88+
abstract-testing = { version = "0.26.0", path = "packages/abstract-testing" }
89+
abstract-xion = { package = "account", version = "0.1.0", git = "https://github.com/burnt-labs/contracts", features = ["library"] }
9090

9191

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

95-
abstract-adapter-utils = { version = "0.25.0", path = "packages/standards/utils" }
95+
abstract-adapter-utils = { version = "0.26.0", path = "packages/standards/utils" }
9696
abstract-dex-standard = { path = "packages/standards/dex" }
9797
abstract-staking-standard = { path = "packages/standards/staking" }
9898

@@ -123,12 +123,6 @@ overflow-checks = true
123123
panic = 'abort'
124124
rpath = false
125125

126-
[patch.crates-io]
127-
128-
# In case Polytone not released
129-
# abstract-polytone = { git = "https://github.com/AbstractSDK/polytone.git", branch = "bump/cw2" }
130-
# abstract-polytone-note = { git = "https://github.com/AbstractSDK/polytone.git", branch = "bump/cw2" }
131-
# abstract-cw-orch-polytone = { git = "https://github.com/AbstractSDK/polytone.git", branch = "bump/cw2" }
132126

133127
[workspace.metadata.cargo-udeps.ignore]
134128
# ensures CI doens't flag workspace-hack as unused dep

framework/packages/abstract-adapter/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ schemars = { workspace = true }
3131
serde = { workspace = true }
3232
thiserror = { workspace = true }
3333
# Keep this as a version and update when publishing new versions
34-
abstract-ibc-client = { version = "0.25.0", path = "../../contracts/native/ibc-client", default-features = false }
35-
abstract-ibc-host = { version = "0.25.0", path = "../../contracts/native/ibc-host", default-features = false }
36-
abstract-interface = { path = "../../packages/abstract-interface", version = "0.25.0" }
34+
# Default features only works on the workspace Cargo.toml, so using workspace = true is not possible here
35+
abstract-ibc-client = { version = "0.26.0", path = "../../contracts/native/ibc-client", default-features = false }
36+
abstract-ibc-host = { version = "0.26.0", path = "../../contracts/native/ibc-host", default-features = false }
37+
abstract-interface = { path = "../../packages/abstract-interface", version = "0.26.0" }
3738

3839
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
3940
workspace-hack = { version = "0.1", path = "../../workspace-hack" }

framework/packages/abstract-app/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,11 @@ schemars = { workspace = true }
3232
serde = { workspace = true }
3333
thiserror = { workspace = true }
3434

35-
abstract-ibc-client = { version = "0.25.0", path = "../../contracts/native/ibc-client", default-features = false }
36-
abstract-ibc-host = { version = "0.25.0", path = "../../contracts/native/ibc-host", default-features = false }
37-
abstract-interface = { version = "0.25.0", path = "../../packages/abstract-interface" }
35+
# Keep this as a version and update when publishing new versions
36+
# Default features only works on the workspace Cargo.toml, so using workspace = true is not possible here
37+
abstract-ibc-client = { version = "0.26.0", path = "../../contracts/native/ibc-client", default-features = false }
38+
abstract-ibc-host = { version = "0.26.0", path = "../../contracts/native/ibc-host", default-features = false }
39+
abstract-interface = { version = "0.26.0", path = "../../packages/abstract-interface" }
3840

3941
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
4042
workspace-hack = { version = "0.1", path = "../../workspace-hack" }

framework/packages/abstract-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license.workspace = true
99
name = "abstract-client"
1010
readme = "README.md"
1111
repository.workspace = true
12-
version = "0.25.0"
12+
version.workspace = true
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

@@ -22,7 +22,7 @@ interchain = ["dep:cw-orch-interchain", "abstract-interface/interchain"]
2222
test-utils = ["cw20", "cw20-base", "cw-plus-interface", "abstract-interface/testing"]
2323

2424
[dependencies]
25-
abstract-interface = { version = "0.25.0", path = "../abstract-interface" }
25+
abstract-interface = { workspace = true }
2626
abstract-std.workspace = true
2727
cosmwasm-std.workspace = true
2828
cw-asset = { workspace = true }

framework/packages/abstract-interface/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ serde_json = "1.0.79"
4949
# Embed state.json in binary in release mode
5050
rust-embed = { version = "8.3.0", features = ["include-exclude"] }
5151

52-
# Keep these here
53-
account = { version = "0.25.0", package = "abstract-account", path = "../../contracts/account", default-features = false }
54-
ans-host = { version = "0.25.0", package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false }
55-
ibc-client = { version = "0.25.0", package = "abstract-ibc-client", path = "../../contracts/native/ibc-client", default-features = false }
56-
ibc-host = { version = "0.25.0", package = "abstract-ibc-host", path = "../../contracts/native/ibc-host", default-features = false }
57-
module-factory = { version = "0.25.0", package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false }
58-
registry = { version = "0.25.0", package = "abstract-registry", path = "../../contracts/native/registry", default-features = false }
52+
# Keep these here. Default features only works on the workspace Cargo.toml, so using workspace = true is not possible here
53+
account = { version = "0.26.0", package = "abstract-account", path = "../../contracts/account", default-features = false }
54+
ans-host = { version = "0.26.0", package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false }
55+
ibc-client = { version = "0.26.0", package = "abstract-ibc-client", path = "../../contracts/native/ibc-client", default-features = false }
56+
ibc-host = { version = "0.26.0", package = "abstract-ibc-host", path = "../../contracts/native/ibc-host", default-features = false }
57+
module-factory = { version = "0.26.0", package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false }
58+
registry = { version = "0.26.0", package = "abstract-registry", path = "../../contracts/native/registry", default-features = false }
5959
workspace-hack = { version = "0.1", path = "../../workspace-hack" }
6060

6161
# Predictable abstract addresses

framework/packages/abstract-standalone/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ semver = { workspace = true }
2828
thiserror = { workspace = true }
2929

3030
# Interface
31-
abstract-interface = { version = "0.25.0", path = "../../packages/abstract-interface" }
31+
abstract-interface = { workspace = true }
3232
cw-orch = { workspace = true }
3333

3434
# Testing

framework/packages/standards/dex/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ cw-address-like = { workspace = true }
2727
cw-asset = { workspace = true }
2828
thiserror = { workspace = true }
2929

30-
abstract-adapter = { version = "0.25.0", path = "../../abstract-adapter" }
30+
abstract-adapter = { workspace = true }
3131
abstract-adapter-utils = { workspace = true }
3232
abstract-sdk = { workspace = true }
3333
abstract-std = { workspace = true }
3434
cw-orch = { workspace = true }
3535

36-
abstract-interface = { version = "0.25.0", path = "../../abstract-interface" }
36+
abstract-interface = { workspace = true }
3737

3838
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
3939
workspace-hack = { version = "0.1", path = "../../../workspace-hack" }

framework/packages/standards/money-market/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cosmwasm-std = { workspace = true }
2525
cw-asset = { workspace = true }
2626
thiserror = { workspace = true }
2727

28-
abstract-adapter = { version = "0.25.0", path = "../../abstract-adapter" }
28+
abstract-adapter = { workspace = true }
2929
abstract-adapter-utils = { workspace = true }
3030
abstract-sdk = { workspace = true }
3131
abstract-std = { workspace = true }

framework/packages/standards/staking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cw-asset = { workspace = true }
2424
cw-utils = { workspace = true }
2525
thiserror = { workspace = true }
2626

27-
abstract-adapter = { version = "0.25.0", path = "../../abstract-adapter" }
27+
abstract-adapter = { workspace = true }
2828
abstract-adapter-utils = { workspace = true }
2929
abstract-sdk = { workspace = true }
3030
abstract-std = { workspace = true }

0 commit comments

Comments
 (0)