Skip to content

Commit

Permalink
v1.3.0 release (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb authored Apr 9, 2023
1 parent 490098e commit 19f3379
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
- run:
name: Build development contracts
command: |
docker run --volumes-from with_code cosmwasm/workspace-optimizer:0.12.11
docker run --volumes-from with_code cosmwasm/workspace-optimizer:0.12.13
docker cp with_code:/code/artifacts ./artifacts
- run:
name: Show data
Expand Down
2 changes: 1 addition & 1 deletion 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 contracts/marketplace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sg-marketplace"
version = "1.2.1"
version = "1.3.0"
authors = [
"Shane Vitarana <s@noreply.publicawesome.com>",
"Jake Hartnell <jake@publicawesome.com>",
Expand Down
2 changes: 1 addition & 1 deletion contracts/marketplace/src/testing/setup/templates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ pub fn mock_with_royalties(
description: String::from("Stargaze Monkeys"),
image: "https://example.com/image.png".to_string(),
external_link: Some("https://example.com/external.html".to_string()),
royalty_info: royalty_info,
royalty_info,
start_trading_time,
explicit_content: None,
},
Expand Down
4 changes: 2 additions & 2 deletions contracts/marketplace/src/testing/tests/fixed_price.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ fn try_buy_now() {
};

let res = router.execute_contract(
bidder.clone(),
bidder,
marketplace.clone(),
&set_bid_msg,
&coins(150, NATIVE_DENOM),
Expand Down Expand Up @@ -234,7 +234,7 @@ fn try_buy_now() {
};

let res = router.execute_contract(
bidder2.clone(),
bidder2,
marketplace.clone(),
&set_bid_msg,
&coins(150, NATIVE_DENOM),
Expand Down

0 comments on commit 19f3379

Please sign in to comment.