From 346ea9220175a661cbabe01c65bbca540b94311d Mon Sep 17 00:00:00 2001 From: Sturdy <91910406+apollo-sturdy@users.noreply.github.com> Date: Wed, 28 Aug 2024 12:52:24 +0200 Subject: [PATCH] chore: bump versions and update changelogs --- CHANGELOG.md | 3 ++- Cargo.lock | 10 +++++----- Cargo.toml | 8 ++++---- cw-dex-astroport/CHANGELOG.md | 2 +- cw-dex-astroport/Cargo.toml | 2 +- cw-dex-osmosis/CHANGELOG.md | 12 ++++++++++++ cw-dex-osmosis/Cargo.toml | 2 +- cw-dex/Cargo.toml | 2 +- 8 files changed, 27 insertions(+), 14 deletions(-) create mode 100644 cw-dex-osmosis/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 291e0bd..49ff5a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,11 @@ 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.5.4-rc.1] - 2024-08-21 +# [0.6.0] - 2024-08-28 ### Changed +- Removed `implementations` module in favor of new crates `cw-dex-astroport` and `cw-dex-osmosis`. - Added two variants to `CwDexError` that are needed in `cw-dex-astroport`. # [0.5.3] - 2024-02-13 diff --git a/Cargo.lock b/Cargo.lock index 7ebb829..42addf4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1016,7 +1016,7 @@ dependencies = [ [[package]] name = "cw-dex" -version = "0.6.0-rc.5" +version = "0.6.0" dependencies = [ "apollo-cw-asset", "cosmwasm-std", @@ -1032,7 +1032,7 @@ dependencies = [ [[package]] name = "cw-dex-astroport" -version = "0.3.0-rc.2" +version = "0.2.0" dependencies = [ "apollo-cw-asset", "apollo-cw-multi-test", @@ -1056,7 +1056,7 @@ dependencies = [ [[package]] name = "cw-dex-osmosis" -version = "0.2.0-rc.2" +version = "0.2.0" dependencies = [ "apollo-cw-asset", "apollo-utils", @@ -1100,9 +1100,9 @@ dependencies = [ [[package]] name = "cw-it" -version = "0.4.0-rc.10" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6838d7d4c7a2fb46d684fdac96fb3aac9bf660703456fe8b0046d751c17e975" +checksum = "b20b25efb4f3dc5b085d16b3bd086276dd3410cca6fcabe1485569a23f821b9e" dependencies = [ "anyhow", "apollo-cw-multi-test", diff --git a/Cargo.toml b/Cargo.toml index b8aa101..1e15ae8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "1.0.145", default-features = false, features = ["derive"] } thiserror = { version = "1.0.31" } apollo-cw-asset = "0.1.1" osmosis-std = "0.22.0" -cw-it = { version = "0.4.0-rc.10", features = ["multi-test"]} +cw-it = { version = "0.4.0", features = ["multi-test"]} apollo-utils = "0.1.0" astroport_v2 = { package = "astroport", version = "2.9.0" } astroport = { package = "astroport", version = "5.3.0" } @@ -36,9 +36,9 @@ cw-multi-test = "=1.2.0" apollo-cw-multi-test = { version = "0.19.0" ,features = ["stargate"] } # Workspace packages -cw-dex = { path = "cw-dex", version = "0.6.0-rc.5" } -cw-dex-astroport = { path = "cw-dex-astroport", version = "0.3.0-rc.1" } -cw-dex-osmosis = { path = "cw-dex-osmosis", version = "0.2.0-rc.1" } +cw-dex = { path = "cw-dex", version = "0.6.0" } +cw-dex-astroport = { path = "cw-dex-astroport", version = "0.2.0" } +cw-dex-osmosis = { path = "cw-dex-osmosis", version = "0.2.0" } cw-dex-test-contract = { path = "test-contracts/package" } astroport-test-contract = { path = "test-contracts/astroport-test-contract" } cw-dex-test-helpers = { path = "test-helpers" } diff --git a/cw-dex-astroport/CHANGELOG.md b/cw-dex-astroport/CHANGELOG.md index d49c98f..b668f31 100644 --- a/cw-dex-astroport/CHANGELOG.md +++ b/cw-dex-astroport/CHANGELOG.md @@ -5,7 +5,7 @@ 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-rc.4] - 2024-08-26 +# [0.2.0] - 2024-08-28 ### Changed diff --git a/cw-dex-astroport/Cargo.toml b/cw-dex-astroport/Cargo.toml index d4bcb27..9305253 100644 --- a/cw-dex-astroport/Cargo.toml +++ b/cw-dex-astroport/Cargo.toml @@ -5,7 +5,7 @@ description = "Implementation of the cw-dex API for the Astroport AMM" edition = "2021" license = "MPL-2.0" repository = "https://github.com/apollodao/cw-dex" -version = "0.3.0-rc.2" +version = "0.2.0" readme = "README.md" [features] diff --git a/cw-dex-osmosis/CHANGELOG.md b/cw-dex-osmosis/CHANGELOG.md new file mode 100644 index 0000000..a4d27c5 --- /dev/null +++ b/cw-dex-osmosis/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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] - 2024-08-28 + +### Changed + +- Use `cw-dex` 0.6.0 diff --git a/cw-dex-osmosis/Cargo.toml b/cw-dex-osmosis/Cargo.toml index 6d49088..2c97929 100644 --- a/cw-dex-osmosis/Cargo.toml +++ b/cw-dex-osmosis/Cargo.toml @@ -5,7 +5,7 @@ description = "Implementation of the cw-dex API for the Osmosis AMM" edition = "2021" license = "MPL-2.0" repository = "https://github.com/apollodao/cw-dex" -version = "0.2.0-rc.2" +version = "0.2.0" readme = "README.md" [features] diff --git a/cw-dex/Cargo.toml b/cw-dex/Cargo.toml index c9f7b78..7fc9fa0 100644 --- a/cw-dex/Cargo.toml +++ b/cw-dex/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MPL-2.0" name = "cw-dex" repository = "https://github.com/apollodao/cw-dex" -version = "0.6.0-rc.5" +version = "0.6.0" readme = "README.md" [features]