Skip to content

Commit

Permalink
Set version: 0.6.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Mar 12, 2021
1 parent 1be56bf commit 0c3f3f5
Show file tree
Hide file tree
Showing 24 changed files with 122 additions and 122 deletions.
46 changes: 23 additions & 23 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.5.0"
version = "0.6.0-alpha1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
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.5.0" }
cw1 = { path = "../../packages/cw1", version = "0.5.0" }
cw2 = { path = "../../packages/cw2", version = "0.5.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.5.0", features = ["library"] }
cw0 = { path = "../../packages/cw0", version = "0.6.0-alpha1" }
cw1 = { path = "../../packages/cw1", version = "0.6.0-alpha1" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-alpha1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.6.0-alpha1", features = ["library"] }
cosmwasm-std = { version = "0.14.0-beta1", features = ["iterator", "staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.5.0", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-alpha1", features = ["iterator"] }
schemars = "0.7"
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.5.0"
version = "0.6.0-alpha1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
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.5.0" }
cw1 = { path = "../../packages/cw1", version = "0.5.0" }
cw2 = { path = "../../packages/cw2", version = "0.5.0" }
cw0 = { path = "../../packages/cw0", version = "0.6.0-alpha1" }
cw1 = { path = "../../packages/cw1", version = "0.6.0-alpha1" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-alpha1" }
cosmwasm-std = { version = "0.14.0-beta1", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.5.0", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-alpha1", features = ["iterator"] }
schemars = "0.7"
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-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.5.0"
version = "0.6.0-alpha1"
authors = ["Mauro Lacy <maurolacy@users.noreply.github.com>"]
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.5.0" }
cw2 = { path = "../../packages/cw2", version = "0.5.0" }
cw20 = { path = "../../packages/cw20", version = "0.5.0" }
cw0 = { path = "../../packages/cw0", version = "0.6.0-alpha1" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-alpha1" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-alpha1" }
cosmwasm-std = { version = "0.14.0-beta1", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.5.0", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-alpha1", features = ["iterator"] }
schemars = "0.7"
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.5.0"
version = "0.6.0-alpha1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
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.5.0" }
cw2 = { path = "../../packages/cw2", version = "0.5.0" }
cw20 = { path = "../../packages/cw20", version = "0.5.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.5.0", features = ["iterator"] }
cw0 = { path = "../../packages/cw0", version = "0.6.0-alpha1" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-alpha1" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-alpha1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-alpha1", features = ["iterator"] }
cosmwasm-std = { version = "0.14.0-beta1", features = ["iterator"] }
schemars = "0.7"
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.5.0"
version = "0.6.0-alpha1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
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.5.0" }
cw2 = { path = "../../packages/cw2", version = "0.5.0" }
cw20 = { path = "../../packages/cw20", version = "0.5.0" }
cw20-base = { path = "../../contracts/cw20-base", version = "0.5.0", features = ["library"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.5.0" }
cw0 = { path = "../../packages/cw0", version = "0.6.0-alpha1" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-alpha1" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-alpha1" }
cw20-base = { path = "../../contracts/cw20-base", version = "0.6.0-alpha1", features = ["library"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-alpha1" }
cosmwasm-std = { version = "0.14.0-beta1", features = ["staking"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
14 changes: 7 additions & 7 deletions contracts/cw20-escrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-escrow"
version = "0.5.0"
version = "0.6.0-alpha1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of an escrow that accepts CosmWasm-20 tokens as well as native tokens"
Expand All @@ -18,16 +18,16 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.5.0" }
cw2 = { path = "../../packages/cw2", version = "0.5.0" }
cw20 = { path = "../../packages/cw20", version = "0.5.0" }
cw0 = { path = "../../packages/cw0", version = "0.6.0-alpha1" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-alpha1" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-alpha1" }
cosmwasm-std = { version = "0.14.0-beta1", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.5.0", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-alpha1", features = ["iterator"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }

[dev-dependencies]
cosmwasm-schema = { version = "0.14.0-beta1" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.5.0" }
cw20-base = { path = "../cw20-base", version = "0.5.0", features = ["library"] }
cw-multi-test = { path = "../../packages/multi-test", version = "0.6.0-alpha1" }
cw20-base = { path = "../cw20-base", version = "0.6.0-alpha1", features = ["library"] }
14 changes: 7 additions & 7 deletions contracts/cw20-ics20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-ics20"
version = "0.5.0"
version = "0.6.0-alpha1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain"
Expand All @@ -18,16 +18,16 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.5.0" }
cw2 = { path = "../../packages/cw2", version = "0.5.0" }
cw20 = { path = "../../packages/cw20", version = "0.5.0" }
cw0 = { path = "../../packages/cw0", version = "0.6.0-alpha1" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-alpha1" }
cw20 = { path = "../../packages/cw20", version = "0.6.0-alpha1" }
cosmwasm-std = { version = "0.14.0-alpha2", features = ["iterator", "stargate"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.5.0", features = ["iterator"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-alpha1", features = ["iterator"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }

[dev-dependencies]
cosmwasm-schema = { version = "0.14.0-alpha2" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.5.0" }
cw20-base = { path = "../cw20-base", version = "0.5.0", features = ["library"] }
cw-multi-test = { path = "../../packages/multi-test", version = "0.6.0-alpha1" }
cw20-base = { path = "../cw20-base", version = "0.6.0-alpha1", features = ["library"] }
Loading

0 comments on commit 0c3f3f5

Please sign in to comment.