From ee383594e18285d1b68dbbf494a106b1254c064c Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 30 Sep 2024 12:18:07 +0200 Subject: [PATCH] chore: release v0.8.1 (#68) --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- cpp/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b905783..a049a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.1](https://github.com/mamba-org/resolvo/compare/resolvo-v0.8.0...resolvo-v0.8.1) - 2024-09-30 + +### Other + +- implement a form of VSIDS ([#67](https://github.com/mamba-org/resolvo/pull/67)) +- *(ci)* bump prefix-dev/rattler-build-action from 0.2.13 to 0.2.14 ([#65](https://github.com/mamba-org/resolvo/pull/65)) +- visit fewer clauses during propagation ([#66](https://github.com/mamba-org/resolvo/pull/66)) + ## [0.8.0](https://github.com/mamba-org/resolvo/compare/resolvo-v0.7.0...resolvo-v0.8.0) - 2024-09-09 ### Added diff --git a/Cargo.lock b/Cargo.lock index 2bebc53..2b9edc8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1154,7 +1154,7 @@ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "resolvo" -version = "0.8.0" +version = "0.8.1" dependencies = [ "ahash", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 741b1b8..b9ee710 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["cpp", "tools/*"] resolver = "2" [workspace.package] -version = "0.8.0" +version = "0.8.1" 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 bd15c1b..a60c72f 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.0", path = "../" } +resolvo = { version = "0.8.1", path = "../" } [build-dependencies] anyhow = "1"