Skip to content

Commit

Permalink
Merge pull request #126 from CosmWasm/shanev/release-0.18.0
Browse files Browse the repository at this point in the history
Publish release 0.18.0
  • Loading branch information
shanev committed Jun 29, 2023
2 parents 8ff3222 + b680704 commit 177a993
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 75 deletions.
92 changes: 40 additions & 52 deletions Cargo.lock

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

36 changes: 17 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["packages/*", "contracts/*"]

[workspace.package]
version = "0.17.0"
version = "0.18.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-nfts"
Expand All @@ -13,41 +13,39 @@ rust-version = "1.65"
[workspace.dependencies]
cosmwasm-schema = "1.2.1"
cosmwasm-std = "1.2.1"
# FIXME: change back to the "official" crates.io release after this PR is merged:
# https://github.com/CosmWasm/cw-plus/pull/858
cw2 = { git = "https://github.com/mars-protocol/cw-plus", rev = "1a3a944" }
cw20 = "1.0.1"
cw721 = { version = "0.17.0", path = "./packages/cw721" }
cw721-base = { version = "0.17.0", path = "./contracts/cw721-base" }
cw2 = "1.1.0"
cw20 = "1.1.0"
cw721 = { version = "0.18.0", path = "./packages/cw721" }
cw721-base = { version = "0.18.0", path = "./contracts/cw721-base" }
cw721-base-016 = { version = "0.16.0", package = "cw721-base" }
cw-multi-test = "0.16.2"
cw-ownable = "0.5.0"
cw-storage-plus = "1.0.1"
cw-multi-test = "0.16.5"
cw-ownable = "0.5.1"
cw-storage-plus = "1.1.0"
cw-utils = "1.0.1"
schemars = "0.8.11"
serde = { version = "1.0.152", default-features = false, features = ["derive"] }
thiserror = "1.0.38"

[profile.release.package.cw721-base]
codegen-units = 1
incremental = false
incremental = false

[profile.release.package.cw721-metadata-onchain]
codegen-units = 1
incremental = false
incremental = false

[profile.release.package.cw721-fixed-price]
codegen-units = 1
incremental = false
incremental = false

[profile.release.package.cw721-non-transferable]
codegen-units = 1
incremental = false
incremental = false

[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false
2 changes: 1 addition & 1 deletion contracts/cw2981-royalties/schema/cw2981-royalties.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "cw2981-royalties",
"contract_version": "0.17.0",
"contract_version": "0.18.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw721-base/schema/cw721-base.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "cw721-base",
"contract_version": "0.17.0",
"contract_version": "0.18.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw721-fixed-price/schema/cw721-fixed-price.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "cw721-fixed-price",
"contract_version": "0.17.0",
"contract_version": "0.18.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "cw721-metadata-onchain",
"contract_version": "0.17.0",
"contract_version": "0.18.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down

0 comments on commit 177a993

Please sign in to comment.