Skip to content

Commit a6228e8

Browse files
committed
reapplied version bumps
1 parent c660c66 commit a6228e8

File tree

18 files changed

+88
-88
lines changed

18 files changed

+88
-88
lines changed

framework/Cargo.lock

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

framework/Cargo.toml

Lines changed: 7 additions & 7 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.24.1"
31+
version = "0.25.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.24.1", path = "packages/abstract-ica" }
86-
abstract-sdk = { version = "0.24.1", path = "packages/abstract-sdk" }
87-
abstract-std = { version = "0.24.1", path = "packages/abstract-std" }
88-
abstract-testing = { version = "0.24.1", path = "packages/abstract-testing" }
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" }
8989
abstract-xion = { package = "account", version = "0.1.0", git = "https://github.com/abstractsdk/xion-contracts", features = ["library"], branch = "fix-for-abstract" }
9090

9191

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

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

framework/contracts/account/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = { workspace = true }
66
name = "abstract-account"
77
readme = "README.md"
88
repository = "https://github.com/AbstractSDK/abstract"
9-
version = "0.24.2"
9+
version = { workspace = true }
1010

1111
exclude = ["contract.wasm", "hash.txt"]
1212

framework/contracts/native/ans-host/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = { workspace = true }
66
name = "abstract-ans-host"
77
readme = "README.md"
88
repository = "https://github.com/AbstractSDK/abstract"
9-
version = "0.24.2"
9+
version = { workspace = true }
1010

1111
exclude = ["contract.wasm", "hash.txt"]
1212

framework/contracts/native/registry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = { workspace = true }
66
name = "abstract-registry"
77
readme = "README.md"
88
repository = "https://github.com/AbstractSDK/abstract"
9-
version = "0.24.3"
9+
version = { workspace = true }
1010

1111
exclude = ["contract.wasm", "hash.txt"]
1212

framework/packages/abstract-adapter/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = { workspace = true }
55
license = { workspace = true }
66
name = "abstract-adapter"
77
resolver = "2"
8-
version = "0.24.1"
8+
version = { workspace = true }
99

1010
[lints]
1111
workspace = true
@@ -32,9 +32,9 @@ schemars = { workspace = true }
3232
serde = { workspace = true }
3333
thiserror = { workspace = true }
3434
# Keep this as a version and update when publishing new versions
35-
abstract-ibc-client = { version = "0.24.1", path = "../../contracts/native/ibc-client", default-features = false }
36-
abstract-ibc-host = { version = "0.24.1", path = "../../contracts/native/ibc-host", default-features = false }
37-
abstract-interface = { path = "../../packages/abstract-interface", version = "0.24.1" }
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 = { path = "../../packages/abstract-interface", version = "0.25.0" }
3838

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

framework/packages/abstract-app/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = { workspace = true }
44
license = { workspace = true }
55
name = "abstract-app"
66
resolver = "2"
7-
version = "0.24.1"
7+
version = { workspace = true }
88

99
[lints]
1010
workspace = true
@@ -34,9 +34,9 @@ semver = { workspace = true }
3434
serde = { workspace = true }
3535
thiserror = { workspace = true }
3636

37-
abstract-ibc-client = { version = "0.24.1", path = "../../contracts/native/ibc-client", default-features = false }
38-
abstract-ibc-host = { version = "0.24.1", path = "../../contracts/native/ibc-host", default-features = false }
39-
abstract-interface = { version = "0.24.1", path = "../../packages/abstract-interface" }
37+
abstract-ibc-client = { version = "0.25.0", path = "../../contracts/native/ibc-client", default-features = false }
38+
abstract-ibc-host = { version = "0.25.0", path = "../../contracts/native/ibc-host", default-features = false }
39+
abstract-interface = { version = "0.25.0", path = "../../packages/abstract-interface" }
4040

4141
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
4242
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.24.2"
12+
version = "0.25.0"
1313

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

@@ -27,7 +27,7 @@ interchain = [
2727
test-utils = ["cw-asset", "cw20", "cw20-base", "cw-plus-interface"]
2828

2929
[dependencies]
30-
abstract-interface = { version = "0.24.1", path = "../abstract-interface" }
30+
abstract-interface = { version = "0.25.0", path = "../abstract-interface" }
3131
abstract-std.workspace = true
3232
cosmwasm-std.workspace = true
3333
cw-orch.workspace = true

framework/packages/abstract-interface/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = { workspace = true }
44
license = { workspace = true }
55
name = "abstract-interface"
66
repository = "https://github.com/AbstractSDK/abstract"
7-
version = "0.24.2"
7+
version = { workspace = true }
88

99
[lints]
1010
workspace = true
@@ -50,12 +50,12 @@ serde_json = "1.0.79"
5050
rust-embed = { version = "8.3.0", features = ["include-exclude"] }
5151

5252
# Keep these here
53-
account = { version = "0.24.1", package = "abstract-account", path = "../../contracts/account", default-features = false }
54-
ans-host = { version = "0.24.1", package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false }
55-
ibc-client = { version = "0.24.1", package = "abstract-ibc-client", path = "../../contracts/native/ibc-client", default-features = false }
56-
ibc-host = { version = "0.24.1", package = "abstract-ibc-host", path = "../../contracts/native/ibc-host", default-features = false }
57-
module-factory = { version = "0.24.1", package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false }
58-
registry = { version = "0.24.1", package = "abstract-registry", path = "../../contracts/native/registry", default-features = false }
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 }
5959
workspace-hack = { version = "0.1", path = "../../workspace-hack" }
6060

6161
# Predictable abstract addresses

framework/packages/abstract-standalone/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = { workspace = true }
44
license = { workspace = true }
55
name = "abstract-standalone"
66
resolver = "2"
7-
version = "0.24.1"
7+
version = { workspace = true }
88

99
[lints]
1010
workspace = true
@@ -31,7 +31,7 @@ serde = { workspace = true }
3131
thiserror = { workspace = true }
3232

3333
# Interface
34-
abstract-interface = { version = "0.24.1", path = "../../packages/abstract-interface" }
34+
abstract-interface = { version = "0.25.0", path = "../../packages/abstract-interface" }
3535
cw-orch = { workspace = true }
3636

3737
# Testing

framework/packages/standards/dex/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ schemars = { workspace = true }
3131
serde = { workspace = true }
3232
thiserror = { workspace = true }
3333

34-
abstract-adapter = { version = "0.24.1", path = "../../abstract-adapter" }
34+
abstract-adapter = { version = "0.25.0", path = "../../abstract-adapter" }
3535
abstract-adapter-utils = { workspace = true }
3636
abstract-sdk = { workspace = true }
3737
abstract-std = { workspace = true }
3838
cw-orch = { workspace = true }
3939

40-
abstract-interface = { version = "0.24.1", path = "../../abstract-interface" }
40+
abstract-interface = { version = "0.25.0", path = "../../abstract-interface" }
4141

4242
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
4343
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
@@ -29,7 +29,7 @@ schemars = { workspace = true }
2929
serde = { workspace = true }
3030
thiserror = { workspace = true }
3131

32-
abstract-adapter = { version = "0.24.1", path = "../../abstract-adapter" }
32+
abstract-adapter = { version = "0.25.0", path = "../../abstract-adapter" }
3333
abstract-adapter-utils = { workspace = true }
3434
abstract-sdk = { workspace = true }
3535
abstract-std = { workspace = true }

framework/packages/standards/staking/Cargo.toml

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

31-
abstract-adapter = { version = "0.24.1", path = "../../abstract-adapter" }
31+
abstract-adapter = { version = "0.25.0", path = "../../abstract-adapter" }
3232
abstract-adapter-utils = { workspace = true }
3333
abstract-sdk = { workspace = true }
3434
abstract-std = { workspace = true }

0 commit comments

Comments
 (0)