Skip to content

Commit

Permalink
Bump to version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Aug 13, 2020
1 parent 335c61c commit 3b8cae5
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
14 changes: 7 additions & 7 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/cw1-subkeys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-subkeys"
version = "0.1.0"
version = "0.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand All @@ -17,9 +17,9 @@ library = []
[dependencies]
cosmwasm-std = { version = "0.10.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.10.0", features = ["iterator"] }
cw2 = { path = "../../packages/cw2", version = "0.1.0" }
cw20 = { path = "../../packages/cw20", version = "0.1.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.1.0", features = ["library"] }
cw2 = { path = "../../packages/cw2", version = "0.1.1" }
cw20 = { path = "../../packages/cw20", version = "0.1.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.1.1", features = ["library"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
snafu = { version = "0.6.3" }
Expand Down
4 changes: 2 additions & 2 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.1.0"
version = "0.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -17,7 +17,7 @@ library = []
[dependencies]
cosmwasm-std = { version = "0.10.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.10.0", features = ["iterator"] }
cw2 = { path = "../../packages/cw2", version = "0.1.0" }
cw2 = { path = "../../packages/cw2", version = "0.1.1" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
snafu = { version = "0.6.3" }
Expand Down
6 changes: 3 additions & 3 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.1.0"
version = "0.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -15,8 +15,8 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw2 = { path = "../../packages/cw2", version = "0.1.0" }
cw20 = { path = "../../packages/cw20", version = "0.1.0" }
cw2 = { path = "../../packages/cw2", version = "0.1.1" }
cw20 = { path = "../../packages/cw20", version = "0.1.1" }
cosmwasm-std = { version = "0.10.0" }
cosmwasm-storage = { version = "0.10.0" }
schemars = "0.7"
Expand Down
6 changes: 3 additions & 3 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.1.0"
version = "0.1.1"
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 @@ -15,8 +15,8 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw2 = { path = "../../packages/cw2", version = "0.1.0" }
cw20 = { path = "../../packages/cw20", version = "0.1.0" }
cw2 = { path = "../../packages/cw2", version = "0.1.1" }
cw20 = { path = "../../packages/cw20", version = "0.1.1" }
cosmwasm-std = { version = "0.10.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.10.0", features = ["iterator"] }
schemars = "0.7"
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.1.0"
version = "0.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Definition and types for the CosmWasm-1 interface"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw2"
version = "0.1.0"
version = "0.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Definition and types for the CosmWasm-2 interface"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20"
version = "0.1.0"
version = "0.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Definition and types for the CosmWasm-20 interface"
Expand Down

0 comments on commit 3b8cae5

Please sign in to comment.