-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
54 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ members = ["packages/*", "contracts/native/*", "contracts/account/*", "scripts"] | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = [ | ||
"CyberHoward <[email protected]>", | ||
"Riada <[email protected]>", | ||
|
@@ -52,8 +52,8 @@ tokio = { version = "1.4", features = ["full"] } | |
|
||
## crates in order of publishing ## see docs/Publishing.md | ||
|
||
abstract-adapter = { version = "0.17.0", path = "packages/abstract-adapter" } | ||
abstract-app = { version = "0.17.0", path = "packages/abstract-app" } | ||
abstract-adapter = { version = "0.17.1", path = "packages/abstract-adapter" } | ||
abstract-app = { version = "0.17.1", path = "packages/abstract-app" } | ||
|
||
# Keep these as path, creates cirular dependency otherwise | ||
# 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 | |
proxy = { package = "abstract-proxy", path = "contracts/account/proxy" } | ||
manager = { package = "abstract-manager", path = "contracts/account/manager" } | ||
|
||
abstract-sdk = { version = "0.17.0", path = "packages/abstract-sdk" } | ||
abstract-testing = { version = "0.17.0", path = "packages/abstract-testing" } | ||
abstract-core = { version = "0.17.0", path = "packages/abstract-core" } | ||
abstract-sdk = { version = "0.17.1", path = "packages/abstract-sdk" } | ||
abstract-testing = { version = "0.17.1", path = "packages/abstract-testing" } | ||
abstract-core = { version = "0.17.1", path = "packages/abstract-core" } | ||
|
||
# These should remain fixed and don't need to be re-published (unless changes are made) | ||
abstract-macros = { version = "0.17.0", path = "packages/abstract-macros" } | ||
abstract-ica = { version = "0.17.0", path = "packages/abstract-ica" } | ||
abstract-macros = { version = "0.17.1", path = "packages/abstract-macros" } | ||
abstract-ica = { version = "0.17.1", path = "packages/abstract-ica" } | ||
|
||
abstract-adapter-utils = { version = "0.17.0", path = "packages/utils" } | ||
abstract-adapter-utils = { version = "0.17.1", path = "packages/utils" } | ||
abstract-dex-adapter-traits = { path = "packages/dex" } | ||
abstract-staking-adapter-traits = { path = "packages/staking" } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ members = [ | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = [ | ||
"CyberHoward <[email protected]>", | ||
"Riada <[email protected]>", | ||
|
@@ -58,14 +58,14 @@ tokio = { version = "1.4", features = ["full"] } | |
|
||
## crates in order of publishing ## see docs/Publishing.md | ||
|
||
abstract-interface = { version = "0.17.0" } | ||
abstract-adapter = { version = "0.17.0" } | ||
abstract-app = { version = "0.17.0" } | ||
abstract-sdk = { version = "0.17.0" } | ||
abstract-testing = { version = "0.17.0" } | ||
abstract-core = { version = "0.17.0" } | ||
abstract-macros = { version = "0.17.0" } | ||
abstract-ica = { version = "0.17.0" } | ||
abstract-interface = { version = "0.17.1" } | ||
abstract-adapter = { version = "0.17.1" } | ||
abstract-app = { version = "0.17.1" } | ||
abstract-sdk = { version = "0.17.1" } | ||
abstract-testing = { version = "0.17.1" } | ||
abstract-core = { version = "0.17.1" } | ||
abstract-macros = { version = "0.17.1" } | ||
abstract-ica = { version = "0.17.1" } | ||
|
||
abstract-dex-adapter = { path = "./contracts/adapters/dex" } | ||
abstract-adapter-utils = { path = "../framework/packages/utils" } | ||
|