-
Notifications
You must be signed in to change notification settings - Fork 144
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 #318 from CosmWasm/v0.7.x
Migrate contracts to 0.15.0
- Loading branch information
Showing
13 changed files
with
109 additions
and
111 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw20-base" | ||
version = "0.6.2" | ||
version = "0.7.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic implementation of a CosmWasm-20 compliant token" | ||
|
@@ -18,14 +18,14 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.6.2" } | ||
cw2 = { path = "../../packages/cw2", version = "0.6.2" } | ||
cw20 = { path = "../../packages/cw20", version = "0.6.2" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.2", features = ["iterator"] } | ||
cosmwasm-std = { version = "0.14.0", features = ["iterator"] } | ||
cw0 = { path = "../../packages/cw0", version = "0.7.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.7.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.7.0" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.7.0", features = ["iterator"] } | ||
cosmwasm-std = { version = "0.15.0", features = ["iterator"] } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.20" } | ||
thiserror = { version = "1.0.23" } | ||
|
||
[dev-dependencies] | ||
cosmwasm-schema = { version = "0.14.0" } | ||
cosmwasm-schema = { version = "0.15.0" } |
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
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
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
Oops, something went wrong.