Skip to content

Commit

Permalink
Merge pull request #11 from apollo-sturdy/dev/astroport-incentives-co…
Browse files Browse the repository at this point in the history
…ntract

feat: replace astroport generator with incentives contract
  • Loading branch information
pacmanifold authored Feb 13, 2024
2 parents fd6b0e4 + 711aeed commit 6f73fd2
Show file tree
Hide file tree
Showing 61 changed files with 2,225 additions and 729 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Set up Go 1.21.6
uses: actions/setup-go@v5
with:
go-version: "1.21.6"

- name: Install cargo make
uses: davidB/rust-cargo-make@v1

Expand Down
21 changes: 12 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
- name: Set up Go 1.21.6
uses: actions/setup-go@v5
with:
profile: minimal
toolchain: 1.69.0
target: wasm32-unknown-unknown
override: true
go-version: "1.21.6"

- name: Install cargo make
uses: davidB/rust-cargo-make@v1

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

- name: Run unit tests
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -51,22 +54,22 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --locked --test osmosis_tests --features osmosis-test-tube
args: --locked --test osmosis_tests --all-features
env:
RUST_BACKTRACE: 1

- name: Run astroport integration tests
uses: actions-rs/cargo@v1
with:
command: test
args: --locked --test astroport_tests --features osmosis-test-tube
args: --locked --test astroport_tests --all-features
env:
RUST_BACKTRACE: 1

- name: Run osmosis property tests
uses: actions-rs/cargo@v1
with:
command: test
args: --locked --test osmosis_proptests
args: --locked --test osmosis_proptests --all-features
env:
RUST_BACKTRACE: 1
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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).

# [0.5.2] - 2024-02-13

### Changed

- Deprecated `implemenations` module in favor of new crates `cw-dex-astroport` and `cw-dex-osmosis`.
- This is to avoid breaking changes in `cw-dex` when one of the implementations change.

# [0.5.1] - 2024-02-06

### Changed
Expand Down
Loading

0 comments on commit 6f73fd2

Please sign in to comment.