Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ zstd = { version = "0.13.3", default-features = false }
# These are the all the crates defined in the workspace. We pin all of them together because they are always updated in tendem.
file_url = { path = "crates/file_url", version = "=0.2.6", default-features = false }
path_resolver = { path = "crates/path_resolver", version = "=0.1.2", default-features = false }
rattler = { path = "crates/rattler", version = "=0.34.9", default-features = false }
rattler = { path = "crates/rattler", version = "=0.34.10", default-features = false }
rattler_cache = { path = "crates/rattler_cache", version = "=0.3.28", default-features = false }
rattler_conda_types = { path = "crates/rattler_conda_types", version = "=0.37.0", default-features = false }
rattler_config = { path = "crates/rattler_config", version = "=0.2.5", default-features = false }
Expand All @@ -194,14 +194,14 @@ rattler_index = { path = "crates/rattler_index", version = "=0.24.6", default-fe
rattler_libsolv_c = { path = "crates/rattler_libsolv_c", version = "=1.2.3", default-features = false }
rattler_lock = { path = "crates/rattler_lock", version = "=0.23.13", default-features = false }
rattler_macros = { path = "crates/rattler_macros", version = "=1.0.11", default-features = false }
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.19", default-features = false }
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.20", default-features = false }
rattler_networking = { path = "crates/rattler_networking", version = "=0.25.8", default-features = false }
rattler_pty = { path = "crates/rattler_pty", version = "=0.2.6", default-features = false }
rattler_redaction = { path = "crates/rattler_redaction", version = "=0.1.12", default-features = false }
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.22.47", default-features = false }
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.23.9", default-features = false }
rattler_sandbox = { path = "crates/rattler_sandbox", version = "=0.1.10", default-features = false }
rattler_shell = { path = "crates/rattler_shell", version = "=0.24.6", default-features = false }
rattler_shell = { path = "crates/rattler_shell", version = "=0.24.7", default-features = false }
rattler_solve = { path = "crates/rattler_solve", version = "=2.1.8", default-features = false }
rattler_virtual_packages = { path = "crates/rattler_virtual_packages", version = "=2.1.1", default-features = false }

Expand Down
6 changes: 6 additions & 0 deletions crates/rattler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.34.10](https://github.com/conda/rattler/compare/rattler-v0.34.9...rattler-v0.34.10) - 2025-07-24

### Fixed

- *(driver)* remove empty directories after unclobbering ([#1555](https://github.com/conda/rattler/pull/1555))

## [0.34.9](https://github.com/conda/rattler/compare/rattler-v0.34.8...rattler-v0.34.9) - 2025-07-23

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler"
version = "0.34.9"
version = "0.34.10"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Rust library to install conda environments"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_menuinst/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.20](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.19...rattler_menuinst-v0.2.20) - 2025-07-24

### Other

- updated the following local packages: rattler_shell

## [0.2.19](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.18...rattler_menuinst-v0.2.19) - 2025-07-23

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_menuinst/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_menuinst"
version = "0.2.19"
version = "0.2.20"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "Install menu entries for a Conda package"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_shell/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.24.7](https://github.com/conda/rattler/compare/rattler_shell-v0.24.6...rattler_shell-v0.24.7) - 2025-07-24

### Fixed

- allow variable expansion ([#1552](https://github.com/conda/rattler/pull/1552))

## [0.24.6](https://github.com/conda/rattler/compare/rattler_shell-v0.24.5...rattler_shell-v0.24.6) - 2025-07-23

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_shell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_shell"
version = "0.24.6"
version = "0.24.7"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "A crate to help with activation and deactivation of a conda environment"
Expand Down
Loading