Skip to content

Commit

Permalink
Abstract-interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski committed Jan 7, 2025
1 parent aa5d047 commit 8bb7b66
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
6 changes: 3 additions & 3 deletions framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ polytone-note = { package = "abstract-polytone-note", version = "5.0.0" }

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

abstract-adapter = { path = "packages/abstract-adapter" }
abstract-app = { path = "packages/abstract-app" }
abstract-standalone = { path = "packages/abstract-standalone" }
abstract-adapter = { path = "packages/abstract-adapter", version = "0.26.0" }
abstract-app = { path = "packages/abstract-app", version = "0.26.0" }
abstract-standalone = { path = "packages/abstract-standalone", version = "0.26.0" }

# Keep these as path, creates cirular dependency otherwise
# Only need to re-publish all contracts if a re-publish of abstract-interface is required
Expand Down
4 changes: 3 additions & 1 deletion framework/packages/standards/dex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ abstract-sdk = { workspace = true }
abstract-std = { workspace = true }
cw-orch = { workspace = true }

abstract-interface = { workspace = true }
# Keep this as a version and update when publishing new versions
# Default features only works on the workspace Cargo.toml, so using workspace = true is not possible here
abstract-interface = { path = "../../abstract-interface", version = "0.26.0" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
workspace-hack = { version = "0.1", path = "../../../workspace-hack" }
Expand Down
18 changes: 9 additions & 9 deletions framework/publish/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,16 @@ echo "All the contracts are published!"

# Now all the packages and standards

PACKAGES="abstract-standalone abstract-client"
STANDARDS="utils staking dex money-market"
PACKAGES="abstract-interface abstract-adapter abstract-app abstract-standalone abstract-client"
STANDARDS=" dex money-market"

for pack in $PACKAGES; do
(
cd "framework/packages/$pack"
echo "Publishing $pack"
publish_crate
)
done
# for pack in $PACKAGES; do
# (
# cd "framework/packages/$pack"
# echo "Publishing $pack"
# publish_crate
# )
# done

for pack in $STANDARDS; do
(
Expand Down

0 comments on commit 8bb7b66

Please sign in to comment.