From adf8465bdef1a28a5c387861687e102f4944917e Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 3 Sep 2024 20:37:38 +0200 Subject: [PATCH] chore: release (#846) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `rattler_cache`: 0.2.0 -> 0.2.1 * `rattler_repodata_gateway`: 0.21.10 -> 0.21.11 * `rattler_virtual_packages`: 1.1.1 -> 1.1.2 * `rattler`: 0.27.8 -> 0.27.9
Changelog

## `rattler_cache`

## [0.2.1](https://github.com/conda/rattler/compare/rattler_cache-v0.2.0...rattler_cache-v0.2.1) - 2024-09-03 ### Fixed - allow `gcs://` and `oci://` in gateway ([#845](https://github.com/conda/rattler/pull/845))
## `rattler_repodata_gateway`
## [0.21.11](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.10...rattler_repodata_gateway-v0.21.11) - 2024-09-03 ### Fixed - allow `gcs://` and `oci://` in gateway ([#845](https://github.com/conda/rattler/pull/845))
## `rattler_virtual_packages`
## [1.1.2](https://github.com/conda/rattler/compare/rattler_virtual_packages-v1.1.1...rattler_virtual_packages-v1.1.2) - 2024-09-03 ### Fixed - allow `gcs://` and `oci://` in gateway ([#845](https://github.com/conda/rattler/pull/845))
## `rattler`
## [0.27.9](https://github.com/conda/rattler/compare/rattler-v0.27.8...rattler-v0.27.9) - 2024-09-03 ### Other - updated the following local packages: rattler_cache

--- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --- crates/rattler-bin/Cargo.toml | 8 ++++---- crates/rattler/CHANGELOG.md | 5 +++++ crates/rattler/Cargo.toml | 4 ++-- crates/rattler_cache/CHANGELOG.md | 5 +++++ crates/rattler_cache/Cargo.toml | 2 +- crates/rattler_repodata_gateway/CHANGELOG.md | 5 +++++ crates/rattler_repodata_gateway/Cargo.toml | 4 ++-- crates/rattler_virtual_packages/CHANGELOG.md | 5 +++++ crates/rattler_virtual_packages/Cargo.toml | 2 +- 9 files changed, 30 insertions(+), 10 deletions(-) diff --git a/crates/rattler-bin/Cargo.toml b/crates/rattler-bin/Cargo.toml index c74a9c0d1..0f887cf26 100644 --- a/crates/rattler-bin/Cargo.toml +++ b/crates/rattler-bin/Cargo.toml @@ -27,13 +27,13 @@ clap = { workspace = true, features = ["derive"] } console = { workspace = true, features = ["windows-console-colors"] } indicatif = { workspace = true } once_cell = { workspace = true } -rattler = { path="../rattler", version = "0.27.8", default-features = false, features = ["indicatif"] } +rattler = { path="../rattler", version = "0.27.9", default-features = false, features = ["indicatif"] } rattler_conda_types = { path="../rattler_conda_types", version = "0.27.4", default-features = false } rattler_networking = { path="../rattler_networking", version = "0.21.3", default-features = false, features = ["google-cloud-auth"] } -rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.10", default-features = false, features = ["gateway"] } +rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.11", default-features = false, features = ["gateway"] } rattler_solve = { path="../rattler_solve", version = "1.0.5", default-features = false, features = ["resolvo", "libsolv_c"] } -rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.1.1", default-features = false } -rattler_cache = { path="../rattler_cache", version = "0.2.0", default-features = false } +rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.1.2", default-features = false } +rattler_cache = { path="../rattler_cache", version = "0.2.1", default-features = false } reqwest = { workspace = true } reqwest-middleware = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } diff --git a/crates/rattler/CHANGELOG.md b/crates/rattler/CHANGELOG.md index 90a35c989..482394db7 100644 --- a/crates/rattler/CHANGELOG.md +++ b/crates/rattler/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.27.9](https://github.com/conda/rattler/compare/rattler-v0.27.8...rattler-v0.27.9) - 2024-09-03 + +### Other +- updated the following local packages: rattler_cache + ## [0.27.8](https://github.com/conda/rattler/compare/rattler-v0.27.7...rattler-v0.27.8) - 2024-09-03 ### Other diff --git a/crates/rattler/Cargo.toml b/crates/rattler/Cargo.toml index 60f972315..1b00b112b 100644 --- a/crates/rattler/Cargo.toml +++ b/crates/rattler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler" -version = "0.27.8" +version = "0.27.9" edition.workspace = true authors = ["Bas Zalmstra "] description = "Rust library to install conda environments" @@ -32,7 +32,7 @@ memchr = { workspace = true } memmap2 = { workspace = true } once_cell = { workspace = true } parking_lot = { workspace = true } -rattler_cache = { path = "../rattler_cache", version = "0.2.0", default-features = false } +rattler_cache = { path = "../rattler_cache", version = "0.2.1", default-features = false } rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.4", default-features = false } rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false } rattler_networking = { path = "../rattler_networking", version = "0.21.3", default-features = false } diff --git a/crates/rattler_cache/CHANGELOG.md b/crates/rattler_cache/CHANGELOG.md index c6282b204..280eef6d9 100644 --- a/crates/rattler_cache/CHANGELOG.md +++ b/crates/rattler_cache/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/conda/rattler/compare/rattler_cache-v0.2.0...rattler_cache-v0.2.1) - 2024-09-03 + +### Fixed +- allow `gcs://` and `oci://` in gateway ([#845](https://github.com/conda/rattler/pull/845)) + ## [0.2.0](https://github.com/conda/rattler/compare/rattler_cache-v0.1.9...rattler_cache-v0.2.0) - 2024-09-03 ### Other diff --git a/crates/rattler_cache/Cargo.toml b/crates/rattler_cache/Cargo.toml index d7e6e2cbe..dc5255608 100644 --- a/crates/rattler_cache/Cargo.toml +++ b/crates/rattler_cache/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_cache" -version = "0.2.0" +version = "0.2.1" description = "A crate to manage the caching of data in rattler" categories.workspace = true homepage.workspace = true diff --git a/crates/rattler_repodata_gateway/CHANGELOG.md b/crates/rattler_repodata_gateway/CHANGELOG.md index 7fb76f4f8..dae45676c 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.11](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.10...rattler_repodata_gateway-v0.21.11) - 2024-09-03 + +### Fixed +- allow `gcs://` and `oci://` in gateway ([#845](https://github.com/conda/rattler/pull/845)) + ## [0.21.10](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.9...rattler_repodata_gateway-v0.21.10) - 2024-09-03 ### Other diff --git a/crates/rattler_repodata_gateway/Cargo.toml b/crates/rattler_repodata_gateway/Cargo.toml index 57c78fde6..5f0a44d73 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.10" +version = "0.21.11" edition.workspace = true authors = ["Bas Zalmstra "] description = "A crate to interact with Conda repodata" @@ -53,7 +53,7 @@ tokio-util = { workspace = true, features = ["codec", "io"] } tracing = { workspace = true } url = { workspace = true, features = ["serde"] } zstd = { workspace = true } -rattler_cache = { version = "0.2.0", path = "../rattler_cache" } +rattler_cache = { version = "0.2.1", path = "../rattler_cache" } rattler_redaction = { version = "0.1.1", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] } [target.'cfg(unix)'.dependencies] diff --git a/crates/rattler_virtual_packages/CHANGELOG.md b/crates/rattler_virtual_packages/CHANGELOG.md index 707055279..e114aeefc 100644 --- a/crates/rattler_virtual_packages/CHANGELOG.md +++ b/crates/rattler_virtual_packages/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.2](https://github.com/conda/rattler/compare/rattler_virtual_packages-v1.1.1...rattler_virtual_packages-v1.1.2) - 2024-09-03 + +### Fixed +- allow `gcs://` and `oci://` in gateway ([#845](https://github.com/conda/rattler/pull/845)) + ## [1.1.1](https://github.com/conda/rattler/compare/rattler_virtual_packages-v1.1.0...rattler_virtual_packages-v1.1.1) - 2024-09-03 ### Other diff --git a/crates/rattler_virtual_packages/Cargo.toml b/crates/rattler_virtual_packages/Cargo.toml index 16b1791d6..aeace3cfa 100644 --- a/crates/rattler_virtual_packages/Cargo.toml +++ b/crates/rattler_virtual_packages/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_virtual_packages" -version = "1.1.1" +version = "1.1.2" edition.workspace = true authors = ["Bas Zalmstra "] description = "Library to work with and detect Conda virtual packages"