Skip to content

Commit

Permalink
Set version: 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Jun 23, 2021
1 parent d513fa5 commit b033196
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions contracts/tfi-factory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tfi-factory"
version = "0.0.1"
version = "0.0.2"
authors = ["Terraform Labs, PTE."]
edition = "2018"
description = "A tfi factory contract - auto pair contract generator and also directory for all pairs"
Expand All @@ -23,7 +23,7 @@ crate-type = ["cdylib", "rlib"]
backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
tfi = { path = "../../packages/tfi", default-features = false, version = "0.0.1"}
tfi = { path = "../../packages/tfi", default-features = false, version = "0.0.2"}
cosmwasm-std = { version = "0.14.0", features = ["iterator"] }
cw-storage-plus = { version = "0.6.0", features = ["iterator"]}
schemars = "0.8.1"
Expand Down
6 changes: 3 additions & 3 deletions contracts/tfi-pair/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tfi-pair"
version = "0.0.1"
version = "0.0.2"
authors = ["Terraform Labs, PTE."]
edition = "2018"
description = "A tfi pair contract"
Expand All @@ -24,7 +24,7 @@ backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
integer-sqrt = "0.1.5"
tfi = { path = "../../packages/tfi", default-features = false, version = "0.0.1"}
tfi = { path = "../../packages/tfi", default-features = false, version = "0.0.2"}
cw2 = { version = "0.6" }
cw20 = { version = "0.6" }
cosmwasm-std = { version = "0.14.0" }
Expand All @@ -37,4 +37,4 @@ protobuf = { version = "2", features = ["with-bytes"] }
[dev-dependencies]
cosmwasm-schema = "0.14.0"
cosmwasm-storage = { version = "0.14.0" }
tfi-mocks = { path = "../../packages/mocks", version = "0.0.1"}
tfi-mocks = { path = "../../packages/mocks", version = "0.0.2"}
6 changes: 3 additions & 3 deletions contracts/tfi-router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tfi-router"
version = "0.0.1"
version = "0.0.2"
authors = ["Terraform Labs, PTE."]
edition = "2018"
description = "A tfi router contract - provides multi-step operations to facilitate single sign operation"
Expand All @@ -26,12 +26,12 @@ backtraces = ["cosmwasm-std/backtraces"]
cw20 = "0.6"
cosmwasm-std = { version = "0.14.0", features = ["iterator"] }
integer-sqrt = "0.1.5"
tfi = { path = "../../packages/tfi", version = "0.0.1" }
tfi = { path = "../../packages/tfi", version = "0.0.2" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
cw-storage-plus = { version = "0.6.0", features = ["iterator"]}

[dev-dependencies]
cosmwasm-storage = { version = "0.14.0", features = ["iterator"] }
cosmwasm-schema = "0.14.0"
tfi-mocks = { path = "../../packages/mocks", version = "0.0.1" }
tfi-mocks = { path = "../../packages/mocks", version = "0.0.2" }
4 changes: 2 additions & 2 deletions packages/mocks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tfi-mocks"
version = "0.0.1"
version = "0.0.2"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Mocks for tfi tests"
Expand All @@ -11,7 +11,7 @@ homepage = "https://tgrade.finance"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tfi = { path = "../tfi", version = "0.0.1" }
tfi = { path = "../tfi", version = "0.0.2" }
cw20 = { version = "0.6" }
cosmwasm-storage = { version = "0.14.0" }
cosmwasm-std = { version = "0.14.0" }
Expand Down
4 changes: 2 additions & 2 deletions packages/tfi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tfi"
version = "0.0.1"
version = "0.0.2"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Common tfi types"
Expand All @@ -24,5 +24,5 @@ serde = { version = "1.0.103", default-features = false, features = ["derive"] }

[dev-dependencies]
cosmwasm-schema = "0.14.0"
tfi-mocks = { path = "../mocks", version = "0.0.1" }
tfi-mocks = { path = "../mocks", version = "0.0.2" }

0 comments on commit b033196

Please sign in to comment.