Skip to content

Commit

Permalink
Set version: 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Jun 23, 2021
1 parent 510fd9e commit 04995e8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 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.2"
version = "0.0.3"
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.2"}
tfi = { path = "../../packages/tfi", default-features = false, version = "0.0.3"}
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.2"
version = "0.0.3"
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.2"}
tfi = { path = "../../packages/tfi", default-features = false, version = "0.0.3"}
cw2 = { version = "0.6" }
cw20 = { version = "0.6" }
cosmwasm-std = { version = "0.14.0" }
Expand All @@ -36,4 +36,4 @@ thiserror = { version = "1.0.20" }
[dev-dependencies]
cosmwasm-schema = "0.14.0"
cosmwasm-storage = { version = "0.14.0" }
tfi-mocks = { path = "../../packages/mocks", version = "0.0.2"}
tfi-mocks = { path = "../../packages/mocks", version = "0.0.3"}
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.2"
version = "0.0.3"
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.2" }
tfi = { path = "../tfi", version = "0.0.3" }
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.2"
version = "0.0.3"
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.2" }
tfi-mocks = { path = "../mocks", version = "0.0.3" }

0 comments on commit 04995e8

Please sign in to comment.