diff --git a/CHANGELOG.md b/CHANGELOG.md index a049a0f..10e84c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.2](https://github.com/mamba-org/resolvo/compare/resolvo-v0.8.1...resolvo-v0.8.2) - 2024-10-04 + +### Fixed + +- add missing ord trait for NameId ([#73](https://github.com/mamba-org/resolvo/pull/73)) + +### Other + +- *(ci)* bump prefix-dev/rattler-build-action from 0.2.14 to 0.2.15 ([#71](https://github.com/mamba-org/resolvo/pull/71)) +- prepare cpp v0.2.0 ([#69](https://github.com/mamba-org/resolvo/pull/69)) + ## [0.8.1](https://github.com/mamba-org/resolvo/compare/resolvo-v0.8.0...resolvo-v0.8.1) - 2024-09-30 ### Other diff --git a/Cargo.lock b/Cargo.lock index dac16d6..c42886b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1088,7 +1088,7 @@ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "resolvo" -version = "0.8.1" +version = "0.8.2" dependencies = [ "ahash", "async-std", diff --git a/Cargo.toml b/Cargo.toml index b9ee710..1bcb853 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["cpp", "tools/*"] resolver = "2" [workspace.package] -version = "0.8.1" +version = "0.8.2" 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 e7dda0c..b7bcc67 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.1", path = "../" } +resolvo = { version = "0.8.2", path = "../" } [build-dependencies] anyhow = "1"