Skip to content

Commit

Permalink
Merge pull request #28 from JakeHartnell/v0.10.0
Browse files Browse the repository at this point in the history
v0.10.0
  • Loading branch information
JakeHartnell authored Nov 9, 2021
2 parents 98c1824 + f8330b6 commit 0d090bb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .cargo/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[alias]
wasm = "build --release --target wasm32-unknown-unknown"
wasm-debug = "build --target wasm32-unknown-unknown"
unit-test = "test --lib"
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions contracts/cw721-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw721-base"
version = "0.9.3"
version = "0.10.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Basic implementation cw721 NFTs"
Expand All @@ -27,7 +27,7 @@ library = []
[dependencies]
cw0 = { version = "0.10.2" }
cw2 = { version = "0.10.2" }
cw721 = { path = "../../packages/cw721", version = "0.9.3" }
cw721 = { path = "../../packages/cw721", version = "0.10.0" }
cw-storage-plus = { version = "0.10.2" }
cosmwasm-std = { version = "1.0.0-beta2" }
schemars = "0.8.6"
Expand Down
6 changes: 3 additions & 3 deletions contracts/cw721-metadata-onchain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw721-metadata-onchain"
version = "0.9.3"
version = "0.10.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Example extending CW721 NFT to store metadata on chain"
Expand All @@ -25,8 +25,8 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw721 = { path = "../../packages/cw721", version = "0.9.3" }
cw721-base = { path = "../cw721-base", version = "0.9.3", features = ["library"] }
cw721 = { path = "../../packages/cw721", version = "0.10.0" }
cw721-base = { path = "../cw721-base", version = "0.10.0", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta2" }
schemars = "0.8.6"
serde = { version = "1.0.130", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/cw721/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw721"
version = "0.9.3"
version = "0.10.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Definition and types for the CosmWasm-721 NFT interface"
Expand Down

0 comments on commit 0d090bb

Please sign in to comment.