Skip to content

Commit 910d6cb

Browse files
authored
Merge pull request #30 from AbstractSDK/0.17-cw-staking-fix
Bump to 0.18.0 to fix cw-staking on osmosis
2 parents 1d6a6cf + 82ced8a commit 910d6cb

80 files changed

Lines changed: 645 additions & 272 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app-template/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ thiserror = { version = "1.0" }
4141
schemars = "0.8"
4242
cw-asset = { version = "3.0" }
4343

44-
abstract-core = { version = "0.17.2" }
45-
abstract-app = { version = "0.17.2" }
46-
abstract-sdk = { version = "0.17.2" }
44+
abstract-core = { version = "0.18.0" }
45+
abstract-app = { version = "0.18.0" }
46+
abstract-sdk = { version = "0.18.0" }
4747

4848
# Dependencies for interface
49-
abstract-interface = { version = "0.17.2", optional = true }
49+
abstract-interface = { version = "0.18.0", optional = true }
5050
cw-orch = { version = "0.13", optional = true }
5151

5252
[dev-dependencies]
5353
app = { path = ".", features = ["interface"] }
54-
abstract-interface = { version = "0.17.2", features = ["daemon"] }
55-
abstract-testing = { version = "0.17.2" }
56-
abstract-sdk = { version = "0.17.2", features = ["test-utils"] }
54+
abstract-interface = { version = "0.18.0", features = ["daemon"] }
55+
abstract-testing = { version = "0.18.0" }
56+
abstract-sdk = { version = "0.18.0", features = ["test-utils"] }
5757
speculoos = "0.11.0"
5858
semver = "1.0"
5959
dotenv = "0.15.0"
-266 KB
Binary file not shown.

app-template/artifacts/checksums_intermediate.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.
-269 KB
Binary file not shown.

framework/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Added
1111

1212
### Changed
13+
- Updated fetch_data arguments of CwStakingCommand
1314

1415
### Fixed
16+
- Partially fixed cw-staking for Osmosis
1517

1618
## [0.17.2] - 2023-07-27
1719

framework/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = ["packages/*", "contracts/native/*", "contracts/account/*", "scripts"]
1212
resolver = "2"
1313

1414
[workspace.package]
15-
version = "0.17.2"
15+
version = "0.18.0"
1616
authors = [
1717
"CyberHoward <cyberhoward@protonmail.com>",
1818
"Riada <riada@abstract.money>",
@@ -52,8 +52,8 @@ tokio = { version = "1.4", features = ["full"] }
5252

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

55-
abstract-adapter = { version = "0.17.2", path = "packages/abstract-adapter" }
56-
abstract-app = { version = "0.17.2", path = "packages/abstract-app" }
55+
abstract-adapter = { version = "0.18.0", path = "packages/abstract-adapter" }
56+
abstract-app = { version = "0.18.0", path = "packages/abstract-app" }
5757

5858
# Keep these as path, creates cirular dependency otherwise
5959
# Only need to re-publish all contracts if a re-publish of abstract-interface is required
@@ -65,15 +65,15 @@ version-control = { package = "abstract-version-control", path = "contracts/nati
6565
proxy = { package = "abstract-proxy", path = "contracts/account/proxy" }
6666
manager = { package = "abstract-manager", path = "contracts/account/manager" }
6767

68-
abstract-sdk = { version = "0.17.2", path = "packages/abstract-sdk" }
69-
abstract-testing = { version = "0.17.2", path = "packages/abstract-testing" }
70-
abstract-core = { version = "0.17.2", path = "packages/abstract-core" }
68+
abstract-sdk = { version = "0.18.0", path = "packages/abstract-sdk" }
69+
abstract-testing = { version = "0.18.0", path = "packages/abstract-testing" }
70+
abstract-core = { version = "0.18.0", path = "packages/abstract-core" }
7171

7272
# These should remain fixed and don't need to be re-published (unless changes are made)
73-
abstract-macros = { version = "0.17.2", path = "packages/abstract-macros" }
74-
abstract-ica = { version = "0.17.2", path = "packages/abstract-ica" }
73+
abstract-macros = { version = "0.18.0", path = "packages/abstract-macros" }
74+
abstract-ica = { version = "0.18.0", path = "packages/abstract-ica" }
7575

76-
abstract-adapter-utils = { version = "0.17.2", path = "packages/utils" }
76+
abstract-adapter-utils = { version = "0.18.0", path = "packages/utils" }
7777
abstract-dex-adapter-traits = { path = "packages/dex" }
7878
abstract-staking-adapter-traits = { path = "packages/staking" }
7979

-363 KB
Binary file not shown.
365 KB
Binary file not shown.
-367 KB
Binary file not shown.
368 KB
Binary file not shown.

0 commit comments

Comments
 (0)