From 1f426434a97d88e6e025f03eddb6e9d83a0cb099 Mon Sep 17 00:00:00 2001 From: Sturdy <91910406+apollo-sturdy@users.noreply.github.com> Date: Wed, 28 Aug 2024 14:33:28 +0200 Subject: [PATCH] chore: bump versions --- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- README.md | 4 ++-- cw-vault-standard/CHANGELOG.md | 2 +- cw-vault-standard/Cargo.toml | 2 +- test-helpers/CHANGELOG.md | 4 ++-- test-helpers/Cargo.toml | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eae79da..c8fa0e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -433,9 +433,9 @@ dependencies = [ [[package]] name = "cw-it" -version = "0.4.0-rc.9" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4f0e15a5fc769308daaa282cfd04ad5dda2b30d59dd849e75cf087df193f77a" +checksum = "b20b25efb4f3dc5b085d16b3bd086276dd3410cca6fcabe1485569a23f821b9e" dependencies = [ "anyhow", "config", @@ -478,7 +478,7 @@ dependencies = [ [[package]] name = "cw-vault-standard" -version = "0.4.1-rc.1" +version = "0.4.1" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -490,7 +490,7 @@ dependencies = [ [[package]] name = "cw-vault-standard-test-helpers" -version = "0.5.0-rc.2" +version = "0.5.0" dependencies = [ "cosmwasm-std", "cw-it", diff --git a/Cargo.toml b/Cargo.toml index 16e4609..b21ac81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,8 +24,8 @@ cw-storage-plus = "1.1.0" cw2 = "1.1.0" mars-owner = "2.0.0" osmosis-std = "0.16.1" -cw-vault-standard = { version = "0.4.1-rc.1", path = "./cw-vault-standard" } -cw-vault-standard-test-helpers = { version = "0.5.0-rc.1", path = "./test-helpers" } +cw-vault-standard = { version = "0.4.1", path = "./cw-vault-standard" } +cw-vault-standard-test-helpers = { version = "0.5.0", path = "./test-helpers" } # dev dependencies proptest = "1.2.0" diff --git a/README.md b/README.md index 9dc9f94..1ece343 100644 --- a/README.md +++ b/README.md @@ -79,5 +79,5 @@ This repo also contains some test helpers in the `packages/test-helpers` directo | cw-vault-standard | test-helpers | |-------------------|---------------| -| v0.3.3 | v0.3.3 | -| v0.4.0 | v0.3.3-v0.4.0 | +| v0.3.3 | v0.3.3-0.4.1 | +| v0.4.1 | v0.5.0 | diff --git a/cw-vault-standard/CHANGELOG.md b/cw-vault-standard/CHANGELOG.md index acabc35..0687601 100644 --- a/cw-vault-standard/CHANGELOG.md +++ b/cw-vault-standard/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.4.1] - 2024-06-13 +## [0.4.1] - 2024-08-28 ### Added - Added `base_token` and `vault_token` fields to `VaultContract` helper struct. diff --git a/cw-vault-standard/Cargo.toml b/cw-vault-standard/Cargo.toml index 7244321..ed052b0 100644 --- a/cw-vault-standard/Cargo.toml +++ b/cw-vault-standard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw-vault-standard" -version = "0.4.1-rc.1" +version = "0.4.1" description = "A standard interface for tokenized vaults written in CosmWasm" documentation = "https://docs.rs/cw-vault-standard" readme = "README.md" diff --git a/test-helpers/CHANGELOG.md b/test-helpers/CHANGELOG.md index 2b71899..ca25060 100644 --- a/test-helpers/CHANGELOG.md +++ b/test-helpers/CHANGELOG.md @@ -5,12 +5,12 @@ 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.0-rc.2] - 2024-08-26 +## [0.5.0] - 2024-08-28 ### Changed - Use 0.4.1 version of cw-vault-standard -- Use 0.4.0-rc.9 version of cw-it +- Use 0.4.0 version of cw-it ## [0.4.1] - 2024-03-07 diff --git a/test-helpers/Cargo.toml b/test-helpers/Cargo.toml index 4f17c2f..1ce475c 100644 --- a/test-helpers/Cargo.toml +++ b/test-helpers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw-vault-standard-test-helpers" -version = "0.5.0-rc.2" +version = "0.5.0" description = "Test helpers for cw-vault-standard compliant contracts." edition = { workspace = true } authors = { workspace = true } @@ -18,4 +18,4 @@ force-unlock = ["cw-vault-standard/force-unlock"] cosmwasm-std = { workspace = true } cw-utils = { workspace = true } cw-vault-standard = { workspace = true } -cw-it = "0.4.0-rc.9" +cw-it = "0.4.0"