From 3a5f06e27bc976240dcd1e184f0158260478b495 Mon Sep 17 00:00:00 2001
From: Bas Zalmstra
Date: Mon, 19 Aug 2024 14:19:31 +0200
Subject: [PATCH] chore: release (#824)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## 🤖 New release
* `rattler_networking`: 0.21.1 -> 0.21.2
* `rattler_lock`: 0.22.19 -> 0.22.20
* `rattler`: 0.27.5 -> 0.27.6
* `rattler_cache`: 0.1.7 -> 0.1.8
* `rattler_package_streaming`: 0.22.2 -> 0.22.3
* `rattler_repodata_gateway`: 0.21.7 -> 0.21.8
Changelog
## `rattler_networking`
##
[0.21.2](https://github.com/conda/rattler/compare/rattler_networking-v0.21.1...rattler_networking-v0.21.2)
- 2024-08-16
### Other
- bump keyring to 3.x to bump syn to 2.x
([#823](https://github.com/conda/rattler/pull/823))
## `rattler_lock`
##
[0.22.20](https://github.com/conda/rattler/compare/rattler_lock-v0.22.19...rattler_lock-v0.22.20)
- 2024-08-16
### Added
- default construct marker-tree
([#825](https://github.com/conda/rattler/pull/825))
## `rattler`
##
[0.27.6](https://github.com/conda/rattler/compare/rattler-v0.27.5...rattler-v0.27.6)
- 2024-08-16
### Other
- updated the following local packages: rattler_networking
## `rattler_cache`
##
[0.1.8](https://github.com/conda/rattler/compare/rattler_cache-v0.1.7...rattler_cache-v0.1.8)
- 2024-08-16
### Other
- updated the following local packages: rattler_networking
## `rattler_package_streaming`
##
[0.22.3](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.2...rattler_package_streaming-v0.22.3)
- 2024-08-16
### Other
- updated the following local packages: rattler_networking
## `rattler_repodata_gateway`
##
[0.21.8](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.7...rattler_repodata_gateway-v0.21.8)
- 2024-08-16
### Other
- updated the following local packages: rattler_networking
---
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 | 8 ++++----
crates/rattler_cache/CHANGELOG.md | 5 +++++
crates/rattler_cache/Cargo.toml | 6 +++---
crates/rattler_index/Cargo.toml | 2 +-
crates/rattler_lock/CHANGELOG.md | 5 +++++
crates/rattler_lock/Cargo.toml | 2 +-
crates/rattler_networking/CHANGELOG.md | 5 +++++
crates/rattler_networking/Cargo.toml | 2 +-
crates/rattler_package_streaming/CHANGELOG.md | 5 +++++
crates/rattler_package_streaming/Cargo.toml | 4 ++--
crates/rattler_repodata_gateway/CHANGELOG.md | 5 +++++
crates/rattler_repodata_gateway/Cargo.toml | 6 +++---
14 files changed, 49 insertions(+), 19 deletions(-)
diff --git a/crates/rattler-bin/Cargo.toml b/crates/rattler-bin/Cargo.toml
index 0e5b81a1b..9ec3685f6 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.5", default-features = false, features = ["indicatif"] }
+rattler = { path="../rattler", version = "0.27.6", 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.7", default-features = false, features = ["gateway"] }
+rattler_networking = { path="../rattler_networking", version = "0.21.2", default-features = false }
+rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.8", 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.4", default-features = false }
-rattler_cache = { path="../rattler_cache", version = "0.1.7", default-features = false }
+rattler_cache = { path="../rattler_cache", version = "0.1.8", 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 ae5914eb4..57dfb46b3 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.6](https://github.com/conda/rattler/compare/rattler-v0.27.5...rattler-v0.27.6) - 2024-08-16
+
+### Other
+- updated the following local packages: rattler_networking
+
## [0.27.5](https://github.com/conda/rattler/compare/rattler-v0.27.4...rattler-v0.27.5) - 2024-08-15
### Fixed
diff --git a/crates/rattler/Cargo.toml b/crates/rattler/Cargo.toml
index ff40bbc1a..2129260ef 100644
--- a/crates/rattler/Cargo.toml
+++ b/crates/rattler/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rattler"
-version = "0.27.5"
+version = "0.27.6"
edition.workspace = true
authors = ["Bas Zalmstra "]
description = "Rust library to install conda environments"
@@ -32,12 +32,12 @@ memchr = { workspace = true }
memmap2 = { workspace = true }
once_cell = { workspace = true }
parking_lot = { workspace = true }
-rattler_cache = { path = "../rattler_cache", version = "0.1.7", default-features = false }
+rattler_cache = { path = "../rattler_cache", version = "0.1.8", default-features = false }
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.2", default-features = false }
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false }
-rattler_networking = { path = "../rattler_networking", version = "0.21.1", default-features = false }
+rattler_networking = { path = "../rattler_networking", version = "0.21.2", default-features = false }
rattler_shell = { path = "../rattler_shell", version = "0.21.6", default-features = false }
-rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.2", default-features = false, features = ["reqwest"] }
+rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.3", default-features = false, features = ["reqwest"] }
reflink-copy = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true, features = ["stream", "json", "gzip"] }
diff --git a/crates/rattler_cache/CHANGELOG.md b/crates/rattler_cache/CHANGELOG.md
index a953f7ddb..92a9c7705 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.1.8](https://github.com/conda/rattler/compare/rattler_cache-v0.1.7...rattler_cache-v0.1.8) - 2024-08-16
+
+### Other
+- updated the following local packages: rattler_networking
+
## [0.1.7](https://github.com/conda/rattler/compare/rattler_cache-v0.1.6...rattler_cache-v0.1.7) - 2024-08-15
### Fixed
diff --git a/crates/rattler_cache/Cargo.toml b/crates/rattler_cache/Cargo.toml
index b6a12ead4..b25d8f6ec 100644
--- a/crates/rattler_cache/Cargo.toml
+++ b/crates/rattler_cache/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rattler_cache"
-version = "0.1.7"
+version = "0.1.8"
description = "A crate to manage the caching of data in rattler"
categories.workspace = true
homepage.workspace = true
@@ -17,8 +17,8 @@ itertools.workspace = true
parking_lot.workspace = true
rattler_conda_types = { version = "0.27.2", path = "../rattler_conda_types", default-features = false }
rattler_digest = { version = "1.0.1", path = "../rattler_digest", default-features = false }
-rattler_networking = { version = "0.21.1", path = "../rattler_networking", default-features = false }
-rattler_package_streaming = { version = "0.22.2", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
+rattler_networking = { version = "0.21.2", path = "../rattler_networking", default-features = false }
+rattler_package_streaming = { version = "0.22.3", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
reqwest.workspace = true
tokio.workspace = true
tracing.workspace = true
diff --git a/crates/rattler_index/Cargo.toml b/crates/rattler_index/Cargo.toml
index 9e2c557c4..bc68cd473 100644
--- a/crates/rattler_index/Cargo.toml
+++ b/crates/rattler_index/Cargo.toml
@@ -14,7 +14,7 @@ readme.workspace = true
fs-err = { workspace = true }
rattler_conda_types = { path="../rattler_conda_types", version = "0.27.2", default-features = false }
rattler_digest = { path="../rattler_digest", version = "1.0.1", default-features = false }
-rattler_package_streaming = { path="../rattler_package_streaming", version = "0.22.2", default-features = false }
+rattler_package_streaming = { path="../rattler_package_streaming", version = "0.22.3", default-features = false }
serde_json = { workspace = true }
tracing = { workspace = true }
walkdir = { workspace = true }
diff --git a/crates/rattler_lock/CHANGELOG.md b/crates/rattler_lock/CHANGELOG.md
index 80169ff92..ee5b92fc6 100644
--- a/crates/rattler_lock/CHANGELOG.md
+++ b/crates/rattler_lock/CHANGELOG.md
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.22.20](https://github.com/conda/rattler/compare/rattler_lock-v0.22.19...rattler_lock-v0.22.20) - 2024-08-16
+
+### Added
+- default construct marker-tree ([#825](https://github.com/conda/rattler/pull/825))
+
## [0.22.19](https://github.com/conda/rattler/compare/rattler_lock-v0.22.18...rattler_lock-v0.22.19) - 2024-08-15
### Fixed
diff --git a/crates/rattler_lock/Cargo.toml b/crates/rattler_lock/Cargo.toml
index 63a0c8c6a..52045b220 100644
--- a/crates/rattler_lock/Cargo.toml
+++ b/crates/rattler_lock/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rattler_lock"
-version = "0.22.19"
+version = "0.22.20"
edition.workspace = true
authors = ["Bas Zalmstra "]
description = "Rust data types for conda lock"
diff --git a/crates/rattler_networking/CHANGELOG.md b/crates/rattler_networking/CHANGELOG.md
index bae583466..4f5482bf1 100644
--- a/crates/rattler_networking/CHANGELOG.md
+++ b/crates/rattler_networking/CHANGELOG.md
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.21.2](https://github.com/conda/rattler/compare/rattler_networking-v0.21.1...rattler_networking-v0.21.2) - 2024-08-16
+
+### Other
+- bump keyring to 3.x to bump syn to 2.x ([#823](https://github.com/conda/rattler/pull/823))
+
## [0.21.1](https://github.com/conda/rattler/compare/rattler_networking-v0.21.0...rattler_networking-v0.21.1) - 2024-08-15
### Fixed
diff --git a/crates/rattler_networking/Cargo.toml b/crates/rattler_networking/Cargo.toml
index fdf0eab8f..b4603ab8a 100644
--- a/crates/rattler_networking/Cargo.toml
+++ b/crates/rattler_networking/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rattler_networking"
-version = "0.21.1"
+version = "0.21.2"
edition.workspace = true
authors = ["Wolf Vollprecht "]
description = "Authenticated requests in the conda ecosystem"
diff --git a/crates/rattler_package_streaming/CHANGELOG.md b/crates/rattler_package_streaming/CHANGELOG.md
index fcebcc198..e93211653 100644
--- a/crates/rattler_package_streaming/CHANGELOG.md
+++ b/crates/rattler_package_streaming/CHANGELOG.md
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.22.3](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.2...rattler_package_streaming-v0.22.3) - 2024-08-16
+
+### Other
+- updated the following local packages: rattler_networking
+
## [0.22.2](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.1...rattler_package_streaming-v0.22.2) - 2024-08-15
### Fixed
diff --git a/crates/rattler_package_streaming/Cargo.toml b/crates/rattler_package_streaming/Cargo.toml
index a59d70806..57d1fed79 100644
--- a/crates/rattler_package_streaming/Cargo.toml
+++ b/crates/rattler_package_streaming/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rattler_package_streaming"
-version = "0.22.2"
+version = "0.22.3"
edition.workspace = true
authors = ["Bas Zalmstra "]
description = "Extract and stream of Conda package archives"
@@ -17,7 +17,7 @@ futures-util = { workspace = true }
num_cpus = { workspace = true }
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.2", default-features = false }
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false }
-rattler_networking = { path = "../rattler_networking", version = "0.21.1", default-features = false }
+rattler_networking = { path = "../rattler_networking", version = "0.21.2", default-features = false }
rattler_redaction = { version = "0.1.1", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
reqwest = { workspace = true, features = ["stream"], optional = true }
reqwest-middleware = { workspace = true, optional = true }
diff --git a/crates/rattler_repodata_gateway/CHANGELOG.md b/crates/rattler_repodata_gateway/CHANGELOG.md
index 62dc2ae0f..4e3b16eba 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.8](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.7...rattler_repodata_gateway-v0.21.8) - 2024-08-16
+
+### Other
+- updated the following local packages: rattler_networking
+
## [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
diff --git a/crates/rattler_repodata_gateway/Cargo.toml b/crates/rattler_repodata_gateway/Cargo.toml
index 2b447cff5..e3bf6d095 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.7"
+version = "0.21.8"
edition.workspace = true
authors = ["Bas Zalmstra "]
description = "A crate to interact with Conda repodata"
@@ -36,7 +36,7 @@ parking_lot = { workspace = true, optional = true }
pin-project-lite = { workspace = true }
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.2", default-features = false, optional = true }
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false, features = ["tokio", "serde"] }
-rattler_networking = { path = "../rattler_networking", version = "0.21.1", default-features = false }
+rattler_networking = { path = "../rattler_networking", version = "0.21.2", default-features = false }
reqwest = { workspace = true, features = ["stream", "http2"] }
reqwest-middleware = { workspace = true }
rmp-serde = { workspace = true }
@@ -52,7 +52,7 @@ tokio-util = { workspace = true, features = ["codec", "io"] }
tracing = { workspace = true }
url = { workspace = true, features = ["serde"] }
zstd = { workspace = true }
-rattler_cache = { version = "0.1.7", path = "../rattler_cache" }
+rattler_cache = { version = "0.1.8", path = "../rattler_cache" }
rattler_redaction = { version = "0.1.1", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
[target.'cfg(unix)'.dependencies]