Skip to content

Commit

Permalink
fix: fix the version of anchor token in all contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNTCS committed Jan 7, 2022
1 parent e78f257 commit 5e11ce0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion contracts/airdrop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ overflow-checks = true
backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
anchor-token = { version = "0.2.0", path = "../../packages/anchor_token" }
anchor-token = { version = "0.3.0-alpha.1", path = "../../packages/anchor_token" }
cosmwasm-std = { version = "0.16.0" }
cosmwasm-storage = { version = "0.16.0" }
cw20 = { version = "0.8.0" }
Expand Down
2 changes: 1 addition & 1 deletion contracts/collector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ backtraces = ["cosmwasm-std/backtraces"]
cw20 = { version = "0.8.0" }
cosmwasm-std = { version = "0.16.0" }
cosmwasm-storage = { version = "0.16.0" }
anchor-token = { version = "0.2.1", path = "../../packages/anchor_token" }
anchor-token = { version = "0.3.0-alpha.1", path = "../../packages/anchor_token" }
terra-cosmwasm = "2.2.0"
astroport = "0.3.1"
schemars = "0.8.1"
Expand Down
2 changes: 1 addition & 1 deletion contracts/community/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ backtraces = ["cosmwasm-std/backtraces"]
cw20 = { version = "0.8.0" }
cosmwasm-std = { version = "0.16.0" }
cosmwasm-storage = { version = "0.16.0" }
anchor-token = { version = "0.2.0", path = "../../packages/anchor_token" }
anchor-token = { version = "0.3.0-alpha.1", path = "../../packages/anchor_token" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion contracts/distributor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ backtraces = ["cosmwasm-std/backtraces"]
cw20 = { version = "0.8.0" }
cosmwasm-std = { version = "0.16.0" }
cosmwasm-storage = { version = "0.16.0" }
anchor-token = { version = "0.2.0", path = "../../packages/anchor_token" }
anchor-token = { version = "0.3.0-alpha.1", path = "../../packages/anchor_token" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion contracts/gov/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ backtraces = ["cosmwasm-std/backtraces"]
cw20 = { version = "0.8.0" }
cosmwasm-std = { version = "0.16.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.16.0", features = ["iterator"] }
anchor-token = { version = "0.2.0", path = "../../packages/anchor_token" }
anchor-token = { version = "0.3.0-alpha.1", path = "../../packages/anchor_token" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
astroport = "0.3.1"
Expand Down
2 changes: 1 addition & 1 deletion contracts/staking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ backtraces = ["cosmwasm-std/backtraces"]
cw20 = { version = "0.8.0" }
cosmwasm-std = { version = "0.16.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.16.0", features = ["iterator"] }
anchor-token = { version = "0.2.0", path = "../../packages/anchor_token" }
anchor-token = { version = "0.3.0-alpha.1", path = "../../packages/anchor_token" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion contracts/vesting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cosmwasm-std = { version = "0.16.0", features = ["iterator"] }
cosmwasm-storage = { version = "0.16.0", features = ["iterator"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
anchor-token = { version = "0.2.0", path = "../../packages/anchor_token" }
anchor-token = { version = "0.3.0-alpha.1", path = "../../packages/anchor_token" }

[dev-dependencies]
cosmwasm-schema = { version = "0.16.0", default-features = false }
1 change: 1 addition & 0 deletions packages/anchor_token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ cw20 = { version = "0.8.0" }
cosmwasm-bignumber = "2.2.0"
cosmwasm-std = { version = "0.16.0" }
cosmwasm-storage = { version = "0.16.0" }
anchor-token = "0.3.0-alpha.1"
terra-cosmwasm = "2.2.0"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down

0 comments on commit 5e11ce0

Please sign in to comment.