From b66cec4fe44074a612d2bc9db8ed61983bc27938 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 2 Jan 2025 09:54:04 +0100 Subject: [PATCH] chore: release v0.8.5 --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- cpp/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8fd15e..bdffdb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.5](https://github.com/mamba-org/resolvo/compare/resolvo-v0.8.4...resolvo-v0.8.5) - 2025-01-02 + +### Fixed + +- issue where a union clause has no candidates (#93) + +### Other + +- reduce watchmap memory size (#92) +- *(ci)* bump prefix-dev/rattler-build-action from 0.2.19 to 0.2.25 (#89) +- *(ci)* bump prefix-dev/rattler-build-action from 0.2.18 to 0.2.19 (#82) + ## [0.8.4](https://github.com/mamba-org/resolvo/compare/resolvo-v0.8.3...resolvo-v0.8.4) - 2024-11-05 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index a2901e4..5e259ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1088,7 +1088,7 @@ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "resolvo" -version = "0.8.4" +version = "0.8.5" dependencies = [ "ahash", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 54905b0..7eb05fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["cpp", "tools/*"] resolver = "2" [workspace.package] -version = "0.8.4" +version = "0.8.5" authors = ["Adolfo OchagavĂ­a ", "Bas Zalmstra ", "Tim de Jager "] homepage = "https://github.com/mamba-org/resolvo" repository = "https://github.com/mamba-org/resolvo" diff --git a/cpp/Cargo.toml b/cpp/Cargo.toml index 310730b..e91dfa4 100644 --- a/cpp/Cargo.toml +++ b/cpp/Cargo.toml @@ -16,7 +16,7 @@ publish = false crate-type = ["lib", "cdylib", "staticlib"] [dependencies] -resolvo = { version = "0.8.4", path = "../" } +resolvo = { version = "0.8.5", path = "../" } [build-dependencies] anyhow = "1"