diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f28e01e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.2.0] - 2023-11-04 + +### Changed + +- Updates dependencies +- Changes `crate::msg::RewardInfo` to include `liquidity_manager_addr` for the `AstroportVault` and `AstroportPool` variants. N.B. this is a breaking API change. diff --git a/Cargo.lock b/Cargo.lock index f660a06..62ee799 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2123,7 +2123,7 @@ dependencies = [ [[package]] name = "neutron-astroport-reward-distributor" -version = "0.1.0-rc.1" +version = "0.2.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -2140,7 +2140,7 @@ dependencies = [ [[package]] name = "neutron-astroport-reward-distributor-contract" -version = "0.1.0-rc.1" +version = "0.2.0" dependencies = [ "apollo-cw-asset", "cosmwasm-std", @@ -2158,7 +2158,7 @@ dependencies = [ [[package]] name = "neutron-astroport-reward-distributor-test-helpers" -version = "0.1.0-rc.1" +version = "0.2.0" dependencies = [ "cosmwasm-std", "cw-dex", diff --git a/Cargo.toml b/Cargo.toml index 4e31f16..4195214 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["contracts/*", "packages/*"] resolver = "2" [workspace.package] -version = "0.1.0-rc.1" +version = "0.2.0" authors = ["Sturdy "] edition = "2021" license = "MPL-2.0"