Skip to content

Commit

Permalink
Release 0.11 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
orkunkl authored Jan 2, 2022
1 parent 3509738 commit ce04b3e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 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.

12 changes: 6 additions & 6 deletions contracts/cw721-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cw721-base"
version = "0.11.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>", "Orkun Külçe <orkun@deuslabs.fi>"]
edition = "2018"
description = "Basic implementation cw721 NFTs"
license = "Apache-2.0"
Expand All @@ -27,12 +27,12 @@ library = []
[dependencies]
cw-utils = { version = "0.11" }
cw2 = { version = "0.11" }
cw721 = { path = "../../packages/cw721", version = "0.11.1" }
cw721 = { path = "../../packages/cw721", version = "0.11" }
cw-storage-plus = { version = "0.11" }
cosmwasm-std = { version = "1.0.0-beta" }
schemars = "0.8.6"
serde = { version = "1.0.130", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.30" }
schemars = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive"] }
thiserror = { version = "1.0" }

[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta" }
10 changes: 5 additions & 5 deletions contracts/cw721-metadata-onchain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cw721-metadata-onchain"
version = "0.11.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>", "Orkun Külçe <orkun@deuslabs.fi>"]
edition = "2018"
description = "Example extending CW721 NFT to store metadata on chain"
license = "Apache-2.0"
Expand All @@ -25,10 +25,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw721 = { path = "../../packages/cw721", version = "0.11.1" }
cw721-base = { path = "../cw721-base", version = "0.11.1", features = ["library"] }
cw721 = { path = "../../packages/cw721", version = "0.11" }
cw721-base = { path = "../cw721-base", version = "0.11", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta" }
schemars = "0.8.6"
schemars = "0.8"
serde = { version = "1.0.130", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.30" }

Expand Down
8 changes: 4 additions & 4 deletions packages/cw721/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cw721"
version = "0.11.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>", "Orkun Külçe <orkun@deuslabs.fi>"]
edition = "2018"
description = "Definition and types for the CosmWasm-721 NFT interface"
license = "Apache-2.0"
Expand All @@ -12,8 +12,8 @@ documentation = "https://docs.cosmwasm.com"
[dependencies]
cw-utils = { version = "0.11" }
cosmwasm-std = { version = "1.0.0-beta" }
schemars = "0.8.6"
serde = { version = "1.0.130", default-features = false, features = ["derive"] }
schemars = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive"] }

[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta" }

0 comments on commit ce04b3e

Please sign in to comment.