Skip to content

Commit d83681b

Browse files
chore: release
1 parent 47bde07 commit d83681b

26 files changed

Lines changed: 239 additions & 106 deletions

File tree

Cargo.lock

Lines changed: 144 additions & 83 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -208,28 +208,28 @@ zstd = { version = "0.13.3", default-features = false }
208208
coalesced_map = { path = "crates/coalesced_map", version = "=0.1.3", default-features = false }
209209
file_url = { path = "crates/file_url", version = "=0.3.1", default-features = false }
210210
path_resolver = { path = "crates/path_resolver", version = "=0.2.11", default-features = false }
211-
rattler = { path = "crates/rattler", version = "=0.45.0", default-features = false }
212-
rattler_cache = { path = "crates/rattler_cache", version = "=0.10.0", default-features = false }
211+
rattler = { path = "crates/rattler", version = "=0.46.0", default-features = false }
212+
rattler_cache = { path = "crates/rattler_cache", version = "=0.10.1", default-features = false }
213213
rattler_conda_types = { path = "crates/rattler_conda_types", version = "=0.47.2", default-features = false }
214214
rattler_config = { path = "crates/rattler_config", version = "=0.5.2", default-features = false }
215215
rattler_digest = { path = "crates/rattler_digest", version = "=1.3.1", default-features = false }
216216
rattler_git = { path = "crates/rattler_git", version = "=0.1.3", default-features = false }
217-
rattler_index = { path = "crates/rattler_index", version = "=0.30.6", default-features = false }
217+
rattler_index = { path = "crates/rattler_index", version = "=0.30.7", default-features = false }
218218
rattler_libsolv_c = { path = "crates/rattler_libsolv_c", version = "=1.4.0", default-features = false }
219219
rattler_lock = { path = "crates/rattler_lock", version = "=0.31.3", default-features = false }
220220
rattler_macros = { path = "crates/rattler_macros", version = "=1.1.1", default-features = false }
221-
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.67", default-features = false }
222-
rattler_networking = { path = "crates/rattler_networking", version = "=0.29.0", default-features = false }
223-
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.26.5", default-features = false }
221+
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.68", default-features = false }
222+
rattler_networking = { path = "crates/rattler_networking", version = "=0.30.0", default-features = false }
223+
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.26.6", default-features = false }
224224
rattler_prefix_guard = { path = "crates/rattler_prefix_guard", version = "=0.1.1", default-features = false }
225-
rattler_pty = { path = "crates/rattler_pty", version = "=0.2.13", default-features = false }
225+
rattler_pty = { path = "crates/rattler_pty", version = "=0.2.14", default-features = false }
226226
rattler_redaction = { path = "crates/rattler_redaction", version = "=0.2.1", default-features = false }
227-
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.29.6", default-features = false }
228-
rattler_s3 = { path = "crates/rattler_s3", version = "=0.2.5", default-features = false }
227+
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.29.7", default-features = false }
228+
rattler_s3 = { path = "crates/rattler_s3", version = "=0.2.6", default-features = false }
229229
rattler_sandbox = { path = "crates/rattler_sandbox", version = "=0.2.23", default-features = false }
230-
rattler_shell = { path = "crates/rattler_shell", version = "=0.27.7", default-features = false }
230+
rattler_shell = { path = "crates/rattler_shell", version = "=0.27.8", default-features = false }
231231
rattler_solve = { path = "crates/rattler_solve", version = "=7.2.0", default-features = false }
232-
rattler_upload = { path = "crates/rattler_upload", version = "=0.8.1", default-features = false }
232+
rattler_upload = { path = "crates/rattler_upload", version = "=0.8.2", default-features = false }
233233
rattler_virtual_packages = { path = "crates/rattler_virtual_packages", version = "=3.0.2", default-features = false }
234234

235235
# This is also a rattler crate, but we only pin it to minor version

crates/rattler-bin/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/conda/rattler/compare/rattler-bin-v0.2.1...rattler-bin-v0.2.2) - 2026-06-25
11+
12+
### Added
13+
14+
- add solve command and create platform option ([#2528](https://github.com/conda/rattler/pull/2528))
15+
1016
## [0.2.1](https://github.com/conda/rattler/compare/rattler-bin-v0.2.0...rattler-bin-v0.2.1) - 2026-06-17
1117

1218
### Other

crates/rattler-bin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler-bin"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust binary for common Conda operations"

crates/rattler/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.46.0](https://github.com/conda/rattler/compare/rattler-v0.45.0...rattler-v0.46.0) - 2026-06-25
11+
12+
### Added
13+
14+
- default OAuth flow to device-code ([#2521](https://github.com/conda/rattler/pull/2521))
15+
1016
## [0.45.0](https://github.com/conda/rattler/compare/rattler-v0.44.4...rattler-v0.45.0) - 2026-06-17
1117

1218
### Added

crates/rattler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
exclude = ["**/snapshots/**"]
33
name = "rattler"
4-
version = "0.45.0"
4+
version = "0.46.0"
55
edition.workspace = true
66
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
77
description = "Rust library to install conda environments"

crates/rattler_cache/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.10.1](https://github.com/conda/rattler/compare/rattler_cache-v0.10.0...rattler_cache-v0.10.1) - 2026-06-25
11+
12+
### Other
13+
14+
- updated the following local packages: rattler_networking, rattler_package_streaming
15+
1016
## [0.10.0](https://github.com/conda/rattler/compare/rattler_cache-v0.9.2...rattler_cache-v0.10.0) - 2026-06-17
1117

1218
### Added

crates/rattler_cache/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_cache"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "A crate to manage the caching of data in rattler"
55
categories = { workspace = true }
66
homepage = { workspace = true }

crates/rattler_index/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.30.7](https://github.com/conda/rattler/compare/rattler_index-v0.30.6...rattler_index-v0.30.7) - 2026-06-25
11+
12+
### Other
13+
14+
- update Cargo.lock dependencies
15+
1016
## [0.30.6](https://github.com/conda/rattler/compare/rattler_index-v0.30.5...rattler_index-v0.30.6) - 2026-06-17
1117

1218
### Other

crates/rattler_index/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
exclude = ["tests/**"]
33
name = "rattler_index"
4-
version = "0.30.6"
4+
version = "0.30.7"
55
edition.workspace = true
66
authors = []
77
description = "A crate to index conda channels and create a repodata.json file."

0 commit comments

Comments
 (0)