Skip to content

Commit

Permalink
Set version: 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Oct 12, 2020
1 parent 1bc0adc commit 68f7c1c
Show file tree
Hide file tree
Showing 16 changed files with 61 additions and 61 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

10 changes: 5 additions & 5 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.2.3"
version = "0.3.0"
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,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw1 = { path = "../../packages/cw1", version = "0.2.3" }
cw2 = { path = "../../packages/cw2", version = "0.2.3" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.2.3", features = ["library"] }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cw1 = { path = "../../packages/cw1", version = "0.3.0" }
cw2 = { path = "../../packages/cw2", version = "0.3.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.3.0", features = ["library"] }
cosmwasm-std = { version = "0.11.0", features = ["iterator", "staking"] }
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] }
schemars = "0.7"
Expand Down
8 changes: 4 additions & 4 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.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -18,9 +18,9 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw1 = { path = "../../packages/cw1", version = "0.2.3" }
cw2 = { path = "../../packages/cw2", version = "0.2.3" }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cw1 = { path = "../../packages/cw1", version = "0.3.0" }
cw2 = { path = "../../packages/cw2", version = "0.3.0" }
cosmwasm-std = { version = "0.11.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] }
schemars = "0.7"
Expand Down
8 changes: 4 additions & 4 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.2.3"
version = "0.3.0"
authors = ["Mauro Lacy <maurolacy@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of Atomic Swaps"
Expand All @@ -15,9 +15,9 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw2 = { path = "../../packages/cw2", version = "0.2.3" }
cw20 = { path = "../../packages/cw20", version = "0.2.3" }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cw2 = { path = "../../packages/cw2", version = "0.3.0" }
cw20 = { path = "../../packages/cw20", version = "0.3.0" }
cosmwasm-std = { version = "0.11.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] }
schemars = "0.7"
Expand Down
8 changes: 4 additions & 4 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.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -18,9 +18,9 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw2 = { path = "../../packages/cw2", version = "0.2.3" }
cw20 = { path = "../../packages/cw20", version = "0.2.3" }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cw2 = { path = "../../packages/cw2", version = "0.3.0" }
cw20 = { path = "../../packages/cw20", version = "0.3.0" }
cosmwasm-std = { version = "0.11.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] }
schemars = "0.7"
Expand Down
8 changes: 4 additions & 4 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.2.3"
version = "0.3.0"
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,9 +18,9 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw2 = { path = "../../packages/cw2", version = "0.2.3" }
cw20 = { path = "../../packages/cw20", version = "0.2.3" }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cw2 = { path = "../../packages/cw2", version = "0.3.0" }
cw20 = { path = "../../packages/cw20", version = "0.3.0" }
cosmwasm-std = { version = "0.11.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] }
schemars = "0.7"
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw20-staking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-staking"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implement simple staking derivatives as a cw20 token"
Expand All @@ -20,10 +20,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw2 = { path = "../../packages/cw2", version = "0.2.3" }
cw20 = { path = "../../packages/cw20", version = "0.2.3" }
cw20-base = { path = "../../contracts/cw20-base", version = "0.2.3", features = ["library"] }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cw2 = { path = "../../packages/cw2", version = "0.3.0" }
cw20 = { path = "../../packages/cw20", version = "0.3.0" }
cw20-base = { path = "../../contracts/cw20-base", version = "0.3.0", features = ["library"] }
cosmwasm-std = { version = "0.11.0", features = ["staking"] }
cosmwasm-storage = { version = "0.11.0" }
schemars = "0.7"
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw3-fixed-multisig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw3-fixed-multisig"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementing cw3 with an fixed group multisig"
Expand All @@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw2 = { path = "../../packages/cw2", version = "0.2.3" }
cw3 = { path = "../../packages/cw3", version = "0.2.3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.2.3", features = ["iterator"] }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cw2 = { path = "../../packages/cw2", version = "0.3.0" }
cw3 = { path = "../../packages/cw3", version = "0.3.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.3.0", features = ["iterator"] }
cosmwasm-std = { version = "0.11.0", features = ["iterator"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
8 changes: 4 additions & 4 deletions contracts/cw721-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw721-base"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Basic implementation cw721 NFTs"
Expand All @@ -25,9 +25,9 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw2 = { path = "../../packages/cw2", version = "0.2.3" }
cw721 = { path = "../../packages/cw721", version = "0.2.3" }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cw2 = { path = "../../packages/cw2", version = "0.3.0" }
cw721 = { path = "../../packages/cw721", version = "0.3.0" }
cosmwasm-std = { version = "0.11.0" }
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] }
schemars = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw0/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw0"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Common helpers for other cw specs"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Definition and types for the CosmWasm-1 interface"
Expand Down
4 changes: 2 additions & 2 deletions packages/cw2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw2"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Definition and types for the CosmWasm-2 interface"
Expand All @@ -11,6 +11,6 @@ documentation = "https://docs.cosmwasm.com"

[dependencies]
cosmwasm-std = { version = "0.11.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.2.3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.3.0" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
4 changes: 2 additions & 2 deletions packages/cw20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Definition and types for the CosmWasm-20 interface"
Expand All @@ -10,7 +10,7 @@ homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cosmwasm-std = { version = "0.11.0" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/cw3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw3"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "CosmWasm-3 Interface: On-Chain MultiSig/Voting contracts"
Expand All @@ -10,7 +10,7 @@ homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cosmwasm-std = { version = "0.11.0" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/cw721/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw721"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Definition and types for the CosmWasm-721 NFT interface"
Expand All @@ -10,7 +10,7 @@ homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.2.3" }
cw0 = { path = "../../packages/cw0", version = "0.3.0" }
cosmwasm-std = { version = "0.11.0" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/storage-plus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-storage-plus"
version = "0.2.3"
version = "0.3.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Enhanced/experimental storage engines"
Expand Down

0 comments on commit 68f7c1c

Please sign in to comment.