Skip to content

Commit

Permalink
Set version: 0.6.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Apr 28, 2021
1 parent 2e6f291 commit 36fd036
Show file tree
Hide file tree
Showing 27 changed files with 131 additions and 131 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ jobs:
# Uses --debug for compilation speed
# FIXME: Change when `check_contract` (part of `cosmwasm-0.14.0`) is published
#command: cargo install --debug --features iterator --example check_contract -- cosmwasm-vm
command: cargo install --debug --features iterator --git https://github.com/CosmWasm/cosmwasm --tag=v0.14.0-beta2 --example check_contract -- cosmwasm-vm
command: cargo install --debug --features iterator --git https://github.com/CosmWasm/cosmwasm --tag=v0.14.0-beta5 --example check_contract -- cosmwasm-vm
- save_cache:
paths:
- /usr/local/cargo/registry
Expand Down
50 changes: 25 additions & 25 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/cw1-subkeys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-subkeys"
version = "0.6.0-beta2"
version = "0.6.0-beta3"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand All @@ -18,12 +18,12 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta2" }
cw1 = { path = "../../packages/cw1", version = "0.6.0-beta2" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta2" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.6.0-beta2", features = ["library"] }
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta3" }
cw1 = { path = "../../packages/cw1", version = "0.6.0-beta3" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta3" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.6.0-beta3", features = ["library"] }
cosmwasm-std = { version = "0.14.0-beta5", features = ["iterator", "staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta2", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta3", features = ["iterator"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw1-whitelist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-whitelist"
version = "0.6.0-beta2"
version = "0.6.0-beta3"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -18,11 +18,11 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta2" }
cw1 = { path = "../../packages/cw1", version = "0.6.0-beta2" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta2" }
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta3" }
cw1 = { path = "../../packages/cw1", version = "0.6.0-beta3" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta3" }
cosmwasm-std = { version = "0.14.0-beta5", features = ["iterator", "staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta2", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta3", features = ["iterator"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw1155-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1155-base"
version = "0.6.0-beta2"
version = "0.6.0-beta3"
authors = ["Huang Yi <[email protected]>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-1155 compliant token"
Expand All @@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta2" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta2" }
cw1155 = { path = "../../packages/cw1155", version = "0.6.0-beta2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta2" , features = ["iterator"]}
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta3" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta3" }
cw1155 = { path = "../../packages/cw1155", version = "0.6.0-beta3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta3" , features = ["iterator"]}
cosmwasm-std = { version = "0.14.0-beta5", features = ["iterator"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw20-atomic-swap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-atomic-swap"
version = "0.6.0-beta2"
version = "0.6.0-beta3"
authors = ["Mauro Lacy <[email protected]>"]
edition = "2018"
description = "Implementation of Atomic Swaps"
Expand All @@ -15,11 +15,11 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta2" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta2" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-beta2" }
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta3" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta3" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-beta3" }
cosmwasm-std = { version = "0.14.0-beta5", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta2", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta3", features = ["iterator"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw20-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-base"
version = "0.6.0-beta2"
version = "0.6.0-beta3"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta2" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta2" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-beta2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta2", features = ["iterator"] }
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta3" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta3" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-beta3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta3", features = ["iterator"] }
cosmwasm-std = { version = "0.14.0-beta5", features = ["iterator"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
12 changes: 6 additions & 6 deletions contracts/cw20-bonding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-bonding"
version = "0.6.0-beta2"
version = "0.6.0-beta3"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implement basic bonding curve to issue cw20 tokens"
Expand All @@ -20,11 +20,11 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta2" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta2" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-beta2" }
cw20-base = { path = "../../contracts/cw20-base", version = "0.6.0-beta2", features = ["library"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta2" }
cw0 = { path = "../../packages/cw0", version = "0.6.0-beta3" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-beta3" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-beta3" }
cw20-base = { path = "../../contracts/cw20-base", version = "0.6.0-beta3", features = ["library"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-beta3" }
cosmwasm-std = { version = "0.14.0-beta5", features = ["staking"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
Loading

0 comments on commit 36fd036

Please sign in to comment.