From a7fb3f9177aae4fed8f3c9bab6370fbd5e6896d7 Mon Sep 17 00:00:00 2001 From: MSNTCS Date: Wed, 12 Jan 2022 15:22:41 +0900 Subject: [PATCH] chore: update changelog --- CHANGELOG.md | 4 +++- contracts/airdrop/Cargo.toml | 2 +- contracts/collector/Cargo.toml | 2 +- contracts/community/Cargo.toml | 2 +- contracts/distributor/Cargo.toml | 2 +- contracts/gov/Cargo.toml | 2 +- contracts/staking/Cargo.toml | 2 +- contracts/vesting/Cargo.toml | 2 +- packages/anchor_token/Cargo.toml | 5 ++--- 9 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83ab984..770b7e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ -## 0.2.0 +## 0.3.0 +Astroport support for collector and staking contracts. +## 0.2.0 Columbus-5 upgrade compatible version release. diff --git a/contracts/airdrop/Cargo.toml b/contracts/airdrop/Cargo.toml index 454ebbe..f03fbfb 100644 --- a/contracts/airdrop/Cargo.toml +++ b/contracts/airdrop/Cargo.toml @@ -34,7 +34,7 @@ overflow-checks = true backtraces = ["cosmwasm-std/backtraces"] [dependencies] -anchor-token = { version = "0.3.0-alpha.1", path = "../../packages/anchor_token" } +anchor-token = { version = "0.3.0", path = "../../packages/anchor_token" } cosmwasm-std = { version = "0.16.0" } cosmwasm-storage = { version = "0.16.0" } cw20 = { version = "0.8.0" } diff --git a/contracts/collector/Cargo.toml b/contracts/collector/Cargo.toml index 0358a0c..240e563 100644 --- a/contracts/collector/Cargo.toml +++ b/contracts/collector/Cargo.toml @@ -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.3.0-alpha.1", path = "../../packages/anchor_token" } +anchor-token = { version = "0.3.0", path = "../../packages/anchor_token" } terra-cosmwasm = "2.2.0" astroport = "0.3.1" schemars = "0.8.1" diff --git a/contracts/community/Cargo.toml b/contracts/community/Cargo.toml index 176cf0f..9950cbf 100644 --- a/contracts/community/Cargo.toml +++ b/contracts/community/Cargo.toml @@ -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.3.0-alpha.1", path = "../../packages/anchor_token" } +anchor-token = { version = "0.3.0", path = "../../packages/anchor_token" } schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/contracts/distributor/Cargo.toml b/contracts/distributor/Cargo.toml index 66b0ace..8176096 100644 --- a/contracts/distributor/Cargo.toml +++ b/contracts/distributor/Cargo.toml @@ -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.3.0-alpha.1", path = "../../packages/anchor_token" } +anchor-token = { version = "0.3.0", path = "../../packages/anchor_token" } schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/contracts/gov/Cargo.toml b/contracts/gov/Cargo.toml index a582e9b..4426d09 100644 --- a/contracts/gov/Cargo.toml +++ b/contracts/gov/Cargo.toml @@ -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.3.0-alpha.1", path = "../../packages/anchor_token" } +anchor-token = { version = "0.3.0", path = "../../packages/anchor_token" } schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } astroport = "0.3.1" diff --git a/contracts/staking/Cargo.toml b/contracts/staking/Cargo.toml index 0645fd2..30aa628 100644 --- a/contracts/staking/Cargo.toml +++ b/contracts/staking/Cargo.toml @@ -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.3.0-alpha.1", path = "../../packages/anchor_token" } +anchor-token = { version = "0.3.0", path = "../../packages/anchor_token" } schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/contracts/vesting/Cargo.toml b/contracts/vesting/Cargo.toml index 2bd7a95..cc0f297 100644 --- a/contracts/vesting/Cargo.toml +++ b/contracts/vesting/Cargo.toml @@ -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.3.0-alpha.1", path = "../../packages/anchor_token" } +anchor-token = { version = "0.3.0", path = "../../packages/anchor_token" } [dev-dependencies] cosmwasm-schema = { version = "0.16.0", default-features = false } diff --git a/packages/anchor_token/Cargo.toml b/packages/anchor_token/Cargo.toml index 0aa3e41..e0bf0cd 100644 --- a/packages/anchor_token/Cargo.toml +++ b/packages/anchor_token/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-token" -version = "0.3.0-alpha.1" +version = "0.3.0" authors = ["Terraform Labs, PTE."] edition = "2018" description = "Common helpers for other anchor-token specs" @@ -21,8 +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" +terra-cosmwasm = "2.2.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] }