From b79447c4567233650105213103ea9b294664d05b Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 5 Nov 2024 17:05:31 +0100 Subject: [PATCH] chore: release (#928) --- crates/rattler-bin/Cargo.toml | 4 ++-- crates/rattler_repodata_gateway/CHANGELOG.md | 6 ++++++ crates/rattler_repodata_gateway/Cargo.toml | 2 +- crates/rattler_solve/CHANGELOG.md | 10 ++++++++++ crates/rattler_solve/Cargo.toml | 2 +- 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/crates/rattler-bin/Cargo.toml b/crates/rattler-bin/Cargo.toml index 6a7c9ed8f..3b28ec618 100644 --- a/crates/rattler-bin/Cargo.toml +++ b/crates/rattler-bin/Cargo.toml @@ -30,8 +30,8 @@ once_cell = { workspace = true } rattler = { path="../rattler", version = "0.28.0", default-features = false, features = ["indicatif"] } rattler_conda_types = { path="../rattler_conda_types", version = "0.29.0", default-features = false } rattler_networking = { path="../rattler_networking", version = "0.21.5", default-features = false, features = ["gcs"] } -rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.19", default-features = false, features = ["gateway"] } -rattler_solve = { path="../rattler_solve", version = "1.2.0", default-features = false, features = ["resolvo", "libsolv_c"] } +rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.20", default-features = false, features = ["gateway"] } +rattler_solve = { path="../rattler_solve", version = "1.2.1", default-features = false, features = ["resolvo", "libsolv_c"] } rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.1.8", default-features = false } rattler_cache = { path="../rattler_cache", version = "0.2.8", default-features = false } reqwest = { workspace = true } diff --git a/crates/rattler_repodata_gateway/CHANGELOG.md b/crates/rattler_repodata_gateway/CHANGELOG.md index 72ead6900..30d67277b 100644 --- a/crates/rattler_repodata_gateway/CHANGELOG.md +++ b/crates/rattler_repodata_gateway/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.20](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.19...rattler_repodata_gateway-v0.21.20) - 2024-11-05 + +### Fixed + +- gateway recursive records ([#930](https://github.com/conda/rattler/pull/930)) + ## [0.21.19](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.18...rattler_repodata_gateway-v0.21.19) - 2024-11-04 ### Other diff --git a/crates/rattler_repodata_gateway/Cargo.toml b/crates/rattler_repodata_gateway/Cargo.toml index 9cbbfb43c..14b8dc26e 100644 --- a/crates/rattler_repodata_gateway/Cargo.toml +++ b/crates/rattler_repodata_gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_repodata_gateway" -version = "0.21.19" +version = "0.21.20" edition.workspace = true authors = ["Bas Zalmstra "] description = "A crate to interact with Conda repodata" diff --git a/crates/rattler_solve/CHANGELOG.md b/crates/rattler_solve/CHANGELOG.md index 23080e3b6..8a677948a 100644 --- a/crates/rattler_solve/CHANGELOG.md +++ b/crates/rattler_solve/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.1](https://github.com/conda/rattler/compare/rattler_solve-v1.2.0...rattler_solve-v1.2.1) - 2024-11-05 + +### Fixed + +- solver crash when using unrelated locked record ([#927](https://github.com/conda/rattler/pull/927)) + +### Other + +- bump py-rattler to 0.8.1 ([#929](https://github.com/conda/rattler/pull/929)) + ## [1.2.0](https://github.com/conda/rattler/compare/rattler_solve-v1.1.0...rattler_solve-v1.2.0) - 2024-11-04 ### Added diff --git a/crates/rattler_solve/Cargo.toml b/crates/rattler_solve/Cargo.toml index 70d328b3b..1d0d30fc4 100644 --- a/crates/rattler_solve/Cargo.toml +++ b/crates/rattler_solve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_solve" -version = "1.2.0" +version = "1.2.1" edition.workspace = true authors = ["Bas Zalmstra "] description = "A crate to solve conda environments"