Skip to content

Commit 8e7fcab

Browse files
authored
chore: release
1 parent de11d0d commit 8e7fcab

File tree

25 files changed

+192
-140
lines changed

25 files changed

+192
-140
lines changed

Cargo.lock

+91-99
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/rattler-bin/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ clap = { workspace = true, features = ["derive"] }
2727
console = { workspace = true, features = ["windows-console-colors"] }
2828
indicatif = { workspace = true }
2929
once_cell = { workspace = true }
30-
rattler = { path="../rattler", version = "0.32.3", default-features = false, features = ["indicatif"] }
31-
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.2", default-features = false }
32-
rattler_networking = { path="../rattler_networking", version = "0.22.7", default-features = false, features = ["gcs", "s3"] }
33-
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.40", default-features = false, features = ["gateway"] }
34-
rattler_solve = { path="../rattler_solve", version = "1.3.11", default-features = false, features = ["resolvo", "libsolv_c"] }
30+
rattler = { path="../rattler", version = "0.32.4", default-features = false, features = ["indicatif"] }
31+
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.3", default-features = false }
32+
rattler_networking = { path="../rattler_networking", version = "0.22.8", default-features = false, features = ["gcs", "s3"] }
33+
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.22.0", default-features = false, features = ["gateway"] }
34+
rattler_solve = { path="../rattler_solve", version = "1.4.0", default-features = false, features = ["resolvo", "libsolv_c"] }
3535
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "2.0.6", default-features = false }
36-
rattler_cache = { path="../rattler_cache", version = "0.3.12", default-features = false }
37-
rattler_menuinst = { path="../rattler_menuinst", version = "0.2.1", default-features = false }
36+
rattler_cache = { path="../rattler_cache", version = "0.3.13", default-features = false }
37+
rattler_menuinst = { path="../rattler_menuinst", version = "0.2.2", default-features = false }
3838
reqwest = { workspace = true }
3939
reqwest-middleware = { workspace = true }
4040
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }

crates/rattler/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.32.4](https://github.com/conda/rattler/compare/rattler-v0.32.3...rattler-v0.32.4) - 2025-03-03
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.32.3](https://github.com/conda/rattler/compare/rattler-v0.32.2...rattler-v0.32.3) - 2025-02-28
1016

1117
### Other

crates/rattler/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler"
3-
version = "0.32.3"
3+
version = "0.32.4"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust library to install conda environments"
@@ -32,13 +32,13 @@ memchr = { workspace = true }
3232
memmap2 = { workspace = true }
3333
once_cell = { workspace = true }
3434
parking_lot = { workspace = true }
35-
rattler_cache = { path = "../rattler_cache", version = "0.3.12", default-features = false }
36-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2", default-features = false }
35+
rattler_cache = { path = "../rattler_cache", version = "0.3.13", default-features = false }
36+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3", default-features = false }
3737
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
38-
rattler_networking = { path = "../rattler_networking", version = "0.22.7", default-features = false }
38+
rattler_networking = { path = "../rattler_networking", version = "0.22.8", default-features = false }
3939
rattler_shell = { path = "../rattler_shell", version = "0.22.22", default-features = false }
40-
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.31", default-features = false, features = ["reqwest"] }
41-
rattler_menuinst = { path = "../rattler_menuinst", version = "0.2.1", default-features = false }
40+
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.32", default-features = false, features = ["reqwest"] }
41+
rattler_menuinst = { path = "../rattler_menuinst", version = "0.2.2", default-features = false }
4242
rayon = { workspace = true }
4343
reflink-copy = { workspace = true }
4444
regex = { workspace = true }

crates/rattler_cache/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.13](https://github.com/conda/rattler/compare/rattler_cache-v0.3.12...rattler_cache-v0.3.13) - 2025-03-03
10+
11+
### Added
12+
13+
- *(js)* compile `rattler_solve` and `rattler_repodata_gateway` ([#1108](https://github.com/conda/rattler/pull/1108))
14+
915
## [0.3.12](https://github.com/conda/rattler/compare/rattler_cache-v0.3.11...rattler_cache-v0.3.12) - 2025-02-28
1016

1117
### Other

crates/rattler_cache/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_cache"
3-
version = "0.3.12"
3+
version = "0.3.13"
44
description = "A crate to manage the caching of data in rattler"
55
categories.workspace = true
66
homepage.workspace = true
@@ -21,10 +21,10 @@ fs4 = { workspace = true, features = ["fs-err3-tokio", "tokio"] }
2121
fxhash.workspace = true
2222
itertools.workspace = true
2323
parking_lot.workspace = true
24-
rattler_conda_types = { version = "0.31.2", path = "../rattler_conda_types", default-features = false }
24+
rattler_conda_types = { version = "0.31.3", path = "../rattler_conda_types", default-features = false }
2525
rattler_digest = { version = "1.0.7", path = "../rattler_digest", default-features = false }
26-
rattler_networking = { version = "0.22.7", path = "../rattler_networking", default-features = false }
27-
rattler_package_streaming = { version = "0.22.31", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
26+
rattler_networking = { version = "0.22.8", path = "../rattler_networking", default-features = false }
27+
rattler_package_streaming = { version = "0.22.32", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
2828
reqwest.workspace = true
2929
tempfile.workspace = true
3030
tokio = { workspace = true, features = ["macros"] }

crates/rattler_conda_types/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.31.3](https://github.com/conda/rattler/compare/rattler_conda_types-v0.31.2...rattler_conda_types-v0.31.3) - 2025-03-03
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_redaction
14+
915
## [0.31.2](https://github.com/conda/rattler/compare/rattler_conda_types-v0.31.1...rattler_conda_types-v0.31.2) - 2025-02-28
1016

1117
### Fixed

crates/rattler_conda_types/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_conda_types"
3-
version = "0.31.2"
3+
version = "0.31.3"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust data types for common types used within the Conda ecosystem"
@@ -28,7 +28,7 @@ rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-featur
2828
"serde",
2929
] }
3030
rattler_macros = { path = "../rattler_macros", version = "1.0.6", default-features = false }
31-
rattler_redaction = { version = "0.1.7", path = "../rattler_redaction", default-features = false }
31+
rattler_redaction = { version = "0.1.8", path = "../rattler_redaction", default-features = false }
3232
regex = { workspace = true }
3333
simd-json = { workspace = true, features = ["serde_impl"] }
3434
serde = { workspace = true, features = ["derive", "rc"] }

crates/rattler_index/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.21.2](https://github.com/conda/rattler/compare/rattler_index-v0.21.1...rattler_index-v0.21.2) - 2025-03-03
10+
11+
### Other
12+
13+
- update Cargo.lock dependencies
14+
915
## [0.21.1](https://github.com/conda/rattler/compare/rattler_index-v0.21.0...rattler_index-v0.21.1) - 2025-02-28
1016

1117
### Other

crates/rattler_index/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_index"
3-
version = "0.21.1"
3+
version = "0.21.2"
44
edition.workspace = true
55
authors = []
66
description = "A crate to index conda channels and create a repodata.json file."
@@ -44,10 +44,10 @@ opendal = { workspace = true, features = [
4444
"services-s3",
4545
"services-fs",
4646
], default-features = false }
47-
rattler_networking = { path = "../rattler_networking", version = "0.22.7", default-features = false }
48-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2" }
47+
rattler_networking = { path = "../rattler_networking", version = "0.22.8", default-features = false }
48+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3" }
4949
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
50-
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.31", default-features = false }
50+
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.32", default-features = false }
5151
reqwest = { workspace = true, default-features = false, features = [
5252
"http2",
5353
"macos-system-configuration",

crates/rattler_lock/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ chrono = { workspace = true }
1515
fxhash = { workspace = true }
1616
indexmap = { workspace = true, features = ["serde"] }
1717
itertools = { workspace = true }
18-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3", default-features = false }
1919
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
2020
file_url = { path = "../file_url", version = "0.2.3" }
2121
pep508_rs = { workspace = true }

crates/rattler_menuinst/CHANGELOG.md

+6
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_menuinst-v0.2.1...rattler_menuinst-v0.2.2) - 2025-03-03
11+
12+
### Fixed
13+
14+
- create test directories ([#1135](https://github.com/conda/rattler/pull/1135))
15+
1016
## [0.2.1](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.0...rattler_menuinst-v0.2.1) - 2025-02-28
1117

1218
### Added

crates/rattler_menuinst/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_menuinst"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition.workspace = true
55
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
66
description = "Install menu entries for a Conda package"
@@ -15,7 +15,7 @@ dirs = { workspace = true }
1515
serde = { workspace = true, features = ["derive"] }
1616
serde_json = { workspace = true }
1717
tracing = { workspace = true }
18-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3", default-features = false }
1919
rattler_shell = { path = "../rattler_shell", version = "0.22.22", default-features = false }
2020
thiserror = { workspace = true }
2121
unicode-normalization = { workspace = true }

crates/rattler_networking/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.22.8](https://github.com/conda/rattler/compare/rattler_networking-v0.22.7...rattler_networking-v0.22.8) - 2025-03-03
10+
11+
### Added
12+
13+
- *(js)* compile `rattler_solve` and `rattler_repodata_gateway` ([#1108](https://github.com/conda/rattler/pull/1108))
14+
915
## [0.22.7](https://github.com/conda/rattler/compare/rattler_networking-v0.22.6...rattler_networking-v0.22.7) - 2025-02-28
1016

1117
### Fixed

crates/rattler_networking/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_networking"
3-
version = "0.22.7"
3+
version = "0.22.8"
44
edition.workspace = true
55
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
66
description = "Authenticated requests in the conda ecosystem"

crates/rattler_package_streaming/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.22.32](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.31...rattler_package_streaming-v0.22.32) - 2025-03-03
10+
11+
### Added
12+
13+
- *(js)* compile `rattler_solve` and `rattler_repodata_gateway` ([#1108](https://github.com/conda/rattler/pull/1108))
14+
915
## [0.22.31](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.30...rattler_package_streaming-v0.22.31) - 2025-02-28
1016

1117
### Other

crates/rattler_package_streaming/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_package_streaming"
3-
version = "0.22.31"
3+
version = "0.22.32"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Extract and stream of Conda package archives"
@@ -16,10 +16,10 @@ chrono = { workspace = true }
1616
fs-err = { workspace = true }
1717
futures-util = { workspace = true }
1818
num_cpus = { workspace = true }
19-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2", default-features = false }
19+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3", default-features = false }
2020
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
21-
rattler_networking = { path = "../rattler_networking", version = "0.22.7", default-features = false }
22-
rattler_redaction = { version = "0.1.7", path = "../rattler_redaction", features = [
21+
rattler_networking = { path = "../rattler_networking", version = "0.22.8", default-features = false }
22+
rattler_redaction = { version = "0.1.8", path = "../rattler_redaction", features = [
2323
"reqwest",
2424
"reqwest-middleware",
2525
], default-features = false }

crates/rattler_redaction/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.8](https://github.com/conda/rattler/compare/rattler_redaction-v0.1.7...rattler_redaction-v0.1.8) - 2025-03-03
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.1.7](https://github.com/conda/rattler/compare/rattler_redaction-v0.1.6...rattler_redaction-v0.1.7) - 2025-02-27
1016

1117
### Added

crates/rattler_redaction/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_redaction"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition.workspace = true
55
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
66
description = "Redact sensitive information from URLs (ie. conda tokens)"

crates/rattler_repodata_gateway/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.22.0](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.40...rattler_repodata_gateway-v0.22.0) - 2025-03-03
10+
11+
### Added
12+
13+
- *(js)* compile `rattler_solve` and `rattler_repodata_gateway` ([#1108](https://github.com/conda/rattler/pull/1108))
14+
915
## [0.21.40](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.39...rattler_repodata_gateway-v0.21.40) - 2025-02-28
1016

1117
### Other

crates/rattler_repodata_gateway/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_repodata_gateway"
3-
version = "0.21.40"
3+
version = "0.22.0"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "A crate to interact with Conda repodata"
@@ -34,9 +34,9 @@ json-patch = { workspace = true }
3434
self_cell = { workspace = true, optional = true }
3535
parking_lot = { workspace = true, optional = true }
3636
pin-project-lite = { workspace = true }
37-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2", default-features = false, optional = true }
37+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3", default-features = false, optional = true }
3838
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false, features = ["tokio", "serde"] }
39-
rattler_networking = { path = "../rattler_networking", version = "0.22.7", default-features = false }
39+
rattler_networking = { path = "../rattler_networking", version = "0.22.8", default-features = false }
4040
reqwest = { workspace = true, features = ["stream", "http2"] }
4141
reqwest-middleware = { workspace = true }
4242
rmp-serde = { workspace = true }
@@ -53,8 +53,8 @@ tracing = { workspace = true }
5353
url = { workspace = true, features = ["serde"] }
5454
zstd = { workspace = true }
5555
retry-policies = { workspace = true }
56-
rattler_cache = { version = "0.3.12", path = "../rattler_cache" }
57-
rattler_redaction = { version = "0.1.7", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
56+
rattler_cache = { version = "0.3.13", path = "../rattler_cache" }
57+
rattler_redaction = { version = "0.1.8", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
5858

5959
[target.'cfg(unix)'.dependencies]
6060
libc = { workspace = true }

crates/rattler_shell/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ enum_dispatch = { workspace = true }
1515
indexmap = { workspace = true }
1616
fs-err = { workspace = true }
1717
itertools = { workspace = true }
18-
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.2", default-features = false }
18+
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.3", default-features = false }
1919
serde_json = { workspace = true, features = ["preserve_order"] }
2020
shlex = { workspace = true }
2121
sysinfo = { workspace = true , optional = true }

crates/rattler_solve/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.4.0](https://github.com/conda/rattler/compare/rattler_solve-v1.3.11...rattler_solve-v1.4.0) - 2025-03-03
10+
11+
### Added
12+
13+
- *(js)* compile `rattler_solve` and `rattler_repodata_gateway` ([#1108](https://github.com/conda/rattler/pull/1108))
14+
915
## [1.3.11](https://github.com/conda/rattler/compare/rattler_solve-v1.3.10...rattler_solve-v1.3.11) - 2025-02-28
1016

1117
### Other

crates/rattler_solve/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_solve"
3-
version = "1.3.11"
3+
version = "1.4.0"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "A crate to solve conda environments"
@@ -11,7 +11,7 @@ license.workspace = true
1111
readme.workspace = true
1212

1313
[dependencies]
14-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2", default-features = false }
14+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3", default-features = false }
1515
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
1616
libc = { workspace = true, optional = true }
1717
chrono = { workspace = true }

crates/rattler_virtual_packages/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme.workspace = true
1414
libloading = { workspace = true }
1515
nom = { workspace = true }
1616
once_cell = { workspace = true }
17-
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.2", default-features = false }
17+
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.3", default-features = false }
1818
regex = { workspace = true }
1919
serde = { workspace = true, features = ["derive"] }
2020
thiserror = { workspace = true }

0 commit comments

Comments
 (0)