Skip to content

Commit

Permalink
Merge pull request #9 from wynddao/release-v2-0-1-migrate-adapter
Browse files Browse the repository at this point in the history
Set version v2.0.1; Prepare empty migration for gauge-adapter
  • Loading branch information
ueco-jb authored Mar 23, 2023
2 parents e55b733 + 6831fa7 commit ec37613
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
files: |
artifacts/cw_placeholder.wasm
artifacts/cw_splitter.wasm
artifacts/gauge_adapter
artifacts/gauge_adapter.wasm
artifacts/nominated_trader.wasm
artifacts/wyndex_multi_hop.wasm
artifacts/wyndex_stake.wasm
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["packages/*", "contracts/*", "tests", "utils/*"]

[workspace.package]
version = "2.0.0"
version = "2.0.1"
edition = "2021"
license = "GPL 3.0"
repository = "https://github.com/cosmorama/wynddex"
Expand Down
1 change: 1 addition & 0 deletions contracts/gauge-adapter/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ pub fn migrate(deps: DepsMut, env: Env, msg: MigrateMsg) -> Result<Response, Con
)
.unwrap();
}
MigrateMsg::Update {} => {}
};

Ok(Response::new())
Expand Down
1 change: 1 addition & 0 deletions contracts/gauge-adapter/src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pub enum ExecuteMsg {
pub enum MigrateMsg {
/// Used to instantiate from cw-placeholder
Init(InstantiateMsg),
Update {},
}

// Queries copied from gauge-orchestrator for now (we could use a common crate for this)
Expand Down

0 comments on commit ec37613

Please sign in to comment.