Skip to content

Commit

Permalink
Update contracts and packages version to v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeHartnell committed Oct 13, 2021
1 parent 92e976d commit 67afea4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
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.1"
version = "0.9.2"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Basic implementation cw721 NFTs"
Expand All @@ -27,7 +27,7 @@ library = []
[dependencies]
cw0 = { version = "0.9.1" }
cw2 = { version = "0.9.1" }
cw721 = { path = "../../packages/cw721", version = "0.9.1" }
cw721 = { path = "../../packages/cw721", version = "0.9.2" }
cw-storage-plus = { version = "0.9.1" }
cosmwasm-std = { version = "0.16.0" }
schemars = "0.8.1"
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.1"
version = "0.9.2"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
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.1" }
cw721-base = { path = "../cw721-base", version = "0.9.1", features = ["library"] }
cw721 = { path = "../../packages/cw721", version = "0.9.2" }
cw721-base = { path = "../cw721-base", version = "0.9.2", features = ["library"] }
cosmwasm-std = { version = "0.16.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", 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.1"
version = "0.9.2"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Definition and types for the CosmWasm-721 NFT interface"
Expand Down

0 comments on commit 67afea4

Please sign in to comment.