Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump cw-dex-astroport to 0.2.0-rc.1 #33

Merged
merged 3 commits into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- name: Install nightly toolchain
run: cargo make install-nightly

- name: Install stable toolchain
run: cargo make install-stable

- name: Run cargo clippy
run: cargo make clippy-check

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [Unreleased] - 2024-05-05

### Changed

- Bump `cw-dex-astroport` to version `0.2.0-rc1`.

# [0.3.3] - 2024-04-09

### Changed
Expand Down
94 changes: 77 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["contracts/*", "packages/*"]
resolver = "2"

[workspace.package]
version = "0.3.3"
version = "0.4.0-rc.1"
edition = "2021"
license = "MPL-2.0"
homepage = "https://apollo.farm"
Expand All @@ -20,11 +20,11 @@ cw-storage-plus = "1.1.0"
thiserror = "1.0.45"
apollo-cw-asset = "0.1.2"
cw-dex = "0.5.1"
cw-dex-astroport = "0.1"
cw-dex-astroport = "0.2.0-rc.1"
cw-dex-osmosis = "0.1"
apollo-utils = "0.1.1"
cw-bigint = "0.4.3"
liquidity-helper = { version = "0.3.0", path = "./packages/liquidity-helper" }
liquidity-helper = { version = "0.4.0-rc.1", path = "./packages/liquidity-helper" }
semver = "1.0.20"

# Dev dependencies
Expand Down
2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ args = [

# This task requires the `cargo-machete` package: https://crates.io/crates/cargo-machete
[tasks.machete-check]
toolchain = "${NIGHTLY_VERSION}"
toolchain = "${RUST_VERSION}"
command = "cargo"
args = ["machete"]
[tasks.machete-fix]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ pub fn test_balancing_provide_liquidity(
None,
);
let pool = AstroportPool {
lp_token_addr: Addr::unchecked(uluna_astro_lp_token),
lp_token: AssetInfo::cw20(Addr::unchecked(uluna_astro_lp_token)),
pair_addr: Addr::unchecked(uluna_astro_pair_addr.clone()),
pair_type,
pool_assets: vec![
Expand Down
Loading