Skip to content

Commit

Permalink
Update to cosmwasm 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Jun 26, 2020
1 parent 51b93f1 commit c054c0b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions contracts/cw20-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cw20 = { path = "../../packages/cw20", version = "0.1.0" }
cosmwasm-std = { version = "0.9.0-alpha3" }
cosmwasm-storage = { version = "0.9.0-alpha3" }
cosmwasm-std = { version = "0.9.1" }
cosmwasm-storage = { version = "0.9.1" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
snafu = { version = "0.6.3" }

[dev-dependencies]
# we only need to enable this if we use integration tests
#cosmwasm-vm = { version = "0.9.0-alpha3", default-features = false }
cosmwasm-schema = { version = "0.9.0-alpha3" }
#cosmwasm-vm = { version = "0.9.1", default-features = false }
cosmwasm-schema = { version = "0.9.1" }
6 changes: 3 additions & 3 deletions contracts/cw20-escrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cw20 = { path = "../../packages/cw20", version = "0.1.0" }
cosmwasm-std = { version = "0.9.0-alpha3", features = ["iterator"] }
cosmwasm-storage = { version = "0.9.0-alpha3", features = ["iterator"] }
cosmwasm-std = { version = "0.9.1", features = ["iterator"] }
cosmwasm-storage = { version = "0.9.1", features = ["iterator"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
snafu = { version = "0.6.3" }

[dev-dependencies]
cosmwasm-schema = { version = "0.9.0-alpha3" }
cosmwasm-schema = { version = "0.9.1" }
4 changes: 2 additions & 2 deletions packages/cw20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"

[dependencies]
cosmwasm-std = { version = "0.9.0-alpha3" }
cosmwasm-std = { version = "0.9.1" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

[dev-dependencies]
cosmwasm-schema = { version = "0.9.0-alpha3" }
cosmwasm-schema = { version = "0.9.1" }

0 comments on commit c054c0b

Please sign in to comment.