Skip to content

Commit

Permalink
chore: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNTCS committed Jan 12, 2022
1 parent 5e11ce0 commit a7fb3f9
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 11 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
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.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" }
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.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"
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.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"] }

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.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"] }

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.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"
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.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"] }

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.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 }
5 changes: 2 additions & 3 deletions packages/anchor_token/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }

Expand Down

0 comments on commit a7fb3f9

Please sign in to comment.