-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from JakeHartnell/v0.10.0
v0.10.0
- Loading branch information
Showing
5 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|