Skip to content

Commit

Permalink
Release 0.23 (#407)
Browse files Browse the repository at this point in the history
* add standalone to publish script

* include fresh Cargo lock

* cleanup schemas

* update state

* ignore lock back

* update changelogs

* remove locks

* crate publish fix
  • Loading branch information
Buckram123 authored Jul 16, 2024
1 parent c469f9f commit f0f5e09
Show file tree
Hide file tree
Showing 111 changed files with 165 additions and 76,189 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
# Schemas
framework/packages/**/schema
framework/contracts/**/schema
modules/contracts/**/schema

# Release
**/release
Expand Down
2 changes: 1 addition & 1 deletion framework/docs/src/releases/v0.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

### Fixed

## [0.23.0] - yyyy-mm-dd
## [0.23.0] - 2024-07-16

### Added

Expand Down
2 changes: 1 addition & 1 deletion framework/packages/abstract-standalone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ abstract-std = { workspace = true }

# Interface
cw-orch = { workspace = true }
abstract-interface = { workspace = true }
abstract-interface = { version = "0.23.0", path = "../../packages/abstract-interface" }

# Testing
abstract-testing = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion framework/publish/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ echo "All the contracts are published!"

# Now all the packages and standards

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

for pack in $PACKAGES; do
Expand Down
17 changes: 9 additions & 8 deletions interchain/scripts/src/bin/migrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,15 @@ fn migrate(networks: Vec<ChainInfo>) -> anyhow::Result<()> {
Empty {},
DeployStrategy::Try,
)?;
DexAdapter::new(DEX_ADAPTER_ID, chain.clone()).deploy(
abstract_dex_adapter::contract::CONTRACT_VERSION.parse()?,
DexInstantiateMsg {
recipient_account: 0,
swap_fee: Decimal::permille(3),
},
DeployStrategy::Try,
)?;
// TODO: DEX oversized, not deployed in current release
// DexAdapter::new(DEX_ADAPTER_ID, chain.clone()).deploy(
// abstract_dex_adapter::contract::CONTRACT_VERSION.parse()?,
// DexInstantiateMsg {
// recipient_account: 0,
// swap_fee: Decimal::permille(3),
// },
// DeployStrategy::Try,
// )?;
MoneyMarketAdapter::new(MONEY_MARKET_ADAPTER_ID, chain.clone()).deploy(
abstract_money_market_adapter::contract::CONTRACT_VERSION.parse()?,
MoneyMarketInstantiateMsg {
Expand Down
353 changes: 148 additions & 205 deletions interchain/scripts/state.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ wasm-all-ci:
schema:
#!/usr/bin/env bash
set -e
rm -rf schema # We don't want to keep previous version schemas or contracts we don't support anymore inside this repo
sh scripts/modules-schema.sh
sh scripts/framework-schema.sh
set +e
Expand Down
6 changes: 3 additions & 3 deletions modules/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

- Ping pong application that demonstrates IBC features of abstract

### Changed

### Removed

### Fixed

## [0.23.0] - yyyy-mm-dd
## [0.23.0] - 2024-07-16

### Added

- Ping pong application that demonstrates IBC features of abstract

### Changed

### Removed
Expand Down
Loading

0 comments on commit f0f5e09

Please sign in to comment.