Skip to content

Commit

Permalink
Update contract's version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ueco-jb committed Feb 17, 2022
1 parent eed9455 commit f7253fa
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 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/tfi-factory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tfi-factory"
version = "0.2.2"
version = "0.3.0"
authors = ["Confio GmbH", "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.2.2"}
tfi = { path = "../../packages/tfi", default-features = false, version = "0.3.0"}
cosmwasm-std = "1.0.0-beta5"
cw2 = "0.11.1"
cw-storage-plus = "0.11.1"
Expand All @@ -37,8 +37,8 @@ cosmwasm-schema = "1.0.0-beta5"
cosmwasm-storage = "1.0.0-beta5"
anyhow = { version = "1", features = ["backtrace"] }
cw-multi-test = "0.11.1"
tfi-pair = { path = "../tfi-pair", version = "0.2.2" }
trusted-token = { path = "../trusted-token", version = "0.2.2" }
tfi-pair = { path = "../tfi-pair", version = "0.3.0" }
trusted-token = { path = "../trusted-token", version = "0.3.0" }
derivative = "2"
tg4 = "0.6.2"
tg4-group = { version = "0.6.2", features = ["library"] }
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.2.2"
version = "0.3.0"
authors = ["Confio GmbH", "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.2.2"}
tfi = { path = "../../packages/tfi", default-features = false, version = "0.3.0"}
cw2 = "0.11.1"
cw20 = "0.11.1"
cosmwasm-std = "1.0.0-beta5"
Expand All @@ -38,6 +38,6 @@ cosmwasm-schema = "1.0.0-beta5"
cosmwasm-storage = "1.0.0-beta5"
cw20-base = { version = "0.11.1", features = ["library"] }
cw-multi-test = "0.11.1"
tfi-mocks = { path = "../../packages/mocks", version = "0.2.2"}
tfi-mocks = { path = "../../packages/mocks", version = "0.3.0"}
derivative = "2"
anyhow = { version = "1", features = ["backtrace"] }
2 changes: 1 addition & 1 deletion contracts/trusted-token/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trusted-token"
version = "0.2.2"
version = "0.3.0"
authors = ["Confio GmbH"]
edition = "2018"
license = "Apache-2.0"
Expand Down
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.2.2"
version = "0.3.0"
authors = ["Confio GmbH"]
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.2.2" }
tfi = { path = "../tfi", version = "0.3.0" }
cw20 = "0.11.1"
cosmwasm-storage = "1.0.0-beta5"
cosmwasm-std = "1.0.0-beta5"
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.2.2"
version = "0.3.0"
authors = ["Confio GmbH"]
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 = "1.0.0-beta5"
tfi-mocks = { path = "../mocks", version = "0.2.2" }
tfi-mocks = { path = "../mocks", version = "0.3.0" }

0 comments on commit f7253fa

Please sign in to comment.