diff --git a/crates/rattler-bin/Cargo.toml b/crates/rattler-bin/Cargo.toml index 169107298..ae2f199f6 100644 --- a/crates/rattler-bin/Cargo.toml +++ b/crates/rattler-bin/Cargo.toml @@ -30,7 +30,7 @@ once_cell = { workspace = true } rattler = { path="../rattler", version = "0.27.5", default-features = false, features = ["indicatif"] } rattler_conda_types = { path="../rattler_conda_types", version = "0.27.2", default-features = false } rattler_networking = { path="../rattler_networking", version = "0.21.1", default-features = false } -rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.6", default-features = false, features = ["gateway"] } +rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.7", default-features = false, features = ["gateway"] } rattler_solve = { path="../rattler_solve", version = "1.0.3", default-features = false, features = ["resolvo", "libsolv_c"] } rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.0.3", default-features = false } rattler_cache = { path="../rattler_cache", version = "0.1.7", default-features = false } diff --git a/crates/rattler_repodata_gateway/CHANGELOG.md b/crates/rattler_repodata_gateway/CHANGELOG.md index 80e88dd4c..62dc2ae0f 100644 --- a/crates/rattler_repodata_gateway/CHANGELOG.md +++ b/crates/rattler_repodata_gateway/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.7](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.6...rattler_repodata_gateway-v0.21.7) - 2024-08-16 + +### Added +- add package names api for gateway ([#819](https://github.com/conda/rattler/pull/819)) + ## [0.21.6](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.5...rattler_repodata_gateway-v0.21.6) - 2024-08-15 ### Fixed diff --git a/crates/rattler_repodata_gateway/Cargo.toml b/crates/rattler_repodata_gateway/Cargo.toml index 929537290..2b447cff5 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.6" +version = "0.21.7" edition.workspace = true authors = ["Bas Zalmstra "] description = "A crate to interact with Conda repodata"