Skip to content

Commit ceec563

Browse files
authored
chore: release
1 parent c69b2d1 commit ceec563

File tree

34 files changed

+310
-152
lines changed

34 files changed

+310
-152
lines changed

Cargo.lock

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

crates/rattler-bin/Cargo.toml

+8-8
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.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"] }
35-
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "2.0.6", 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 }
30+
rattler = { path="../rattler", version = "0.33.0", default-features = false, features = ["indicatif"] }
31+
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.4", default-features = false }
32+
rattler_networking = { path="../rattler_networking", version = "0.22.9", default-features = false, features = ["gcs", "s3"] }
33+
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.22.1", default-features = false, features = ["gateway"] }
34+
rattler_solve = { path="../rattler_solve", version = "1.4.1", default-features = false, features = ["resolvo", "libsolv_c"] }
35+
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "2.0.7", default-features = false }
36+
rattler_cache = { path="../rattler_cache", version = "0.3.14", default-features = false }
37+
rattler_menuinst = { path="../rattler_menuinst", version = "0.2.3", 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.33.0](https://github.com/conda/rattler/compare/rattler-v0.32.4...rattler-v0.33.0) - 2025-03-10
10+
11+
### Added
12+
13+
- add reinstallation method to installer and transaction ([#1128](https://github.com/conda/rattler/pull/1128))
14+
915
## [0.32.4](https://github.com/conda/rattler/compare/rattler-v0.32.3...rattler-v0.32.4) - 2025-03-04
1016

1117
### Other

crates/rattler/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler"
3-
version = "0.32.4"
3+
version = "0.33.0"
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.13", default-features = false }
36-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3", default-features = false }
37-
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
38-
rattler_networking = { path = "../rattler_networking", version = "0.22.8", default-features = false }
39-
rattler_shell = { path = "../rattler_shell", version = "0.22.22", 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 }
35+
rattler_cache = { path = "../rattler_cache", version = "0.3.14", default-features = false }
36+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.4", default-features = false }
37+
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false }
38+
rattler_networking = { path = "../rattler_networking", version = "0.22.9", default-features = false }
39+
rattler_shell = { path = "../rattler_shell", version = "0.22.23", default-features = false }
40+
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.33", default-features = false, features = ["reqwest"] }
41+
rattler_menuinst = { path = "../rattler_menuinst", version = "0.2.3", 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.14](https://github.com/conda/rattler/compare/rattler_cache-v0.3.13...rattler_cache-v0.3.14) - 2025-03-10
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.3.13](https://github.com/conda/rattler/compare/rattler_cache-v0.3.12...rattler_cache-v0.3.13) - 2025-03-04
1016

1117
### Added

crates/rattler_cache/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_cache"
3-
version = "0.3.13"
3+
version = "0.3.14"
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.3", path = "../rattler_conda_types", default-features = false }
25-
rattler_digest = { version = "1.0.7", path = "../rattler_digest", default-features = false }
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"] }
24+
rattler_conda_types = { version = "0.31.4", path = "../rattler_conda_types", default-features = false }
25+
rattler_digest = { version = "1.0.8", path = "../rattler_digest", default-features = false }
26+
rattler_networking = { version = "0.22.9", path = "../rattler_networking", default-features = false }
27+
rattler_package_streaming = { version = "0.22.33", 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.4](https://github.com/conda/rattler/compare/rattler_conda_types-v0.31.3...rattler_conda_types-v0.31.4) - 2025-03-10
10+
11+
### Added
12+
13+
- Add support for repodata patching in rattler-index, fix silent failures ([#1129](https://github.com/conda/rattler/pull/1129))
14+
915
## [0.31.3](https://github.com/conda/rattler/compare/rattler_conda_types-v0.31.2...rattler_conda_types-v0.31.3) - 2025-03-04
1016

1117
### Other

crates/rattler_conda_types/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_conda_types"
3-
version = "0.31.3"
3+
version = "0.31.4"
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"
@@ -24,10 +24,10 @@ itertools = { workspace = true }
2424
lazy-regex = { workspace = true }
2525
nom = { workspace = true }
2626
purl = { workspace = true, features = ["serde"] }
27-
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false, features = [
27+
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false, features = [
2828
"serde",
2929
] }
30-
rattler_macros = { path = "../rattler_macros", version = "1.0.6", default-features = false }
30+
rattler_macros = { path = "../rattler_macros", version = "1.0.7", default-features = false }
3131
rattler_redaction = { version = "0.1.8", path = "../rattler_redaction", default-features = false }
3232
regex = { workspace = true }
3333
simd-json = { workspace = true, features = ["serde_impl"] }

crates/rattler_digest/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.0.8](https://github.com/conda/rattler/compare/rattler_digest-v1.0.7...rattler_digest-v1.0.8) - 2025-03-10
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [1.0.7](https://github.com/conda/rattler/compare/rattler_digest-v1.0.6...rattler_digest-v1.0.7) - 2025-02-28
1016

1117
### Other

crates/rattler_digest/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_digest"
3-
version = "1.0.7"
3+
version = "1.0.8"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "An simple crate used by rattler crates to compute different hashes from different sources"

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.22.0](https://github.com/conda/rattler/compare/rattler_index-v0.21.2...rattler_index-v0.22.0) - 2025-03-10
10+
11+
### Added
12+
13+
- Add support for repodata patching in rattler-index, fix silent failures ([#1129](https://github.com/conda/rattler/pull/1129))
14+
915
## [0.21.2](https://github.com/conda/rattler/compare/rattler_index-v0.21.1...rattler_index-v0.21.2) - 2025-03-04
1016

1117
### Other

crates/rattler_index/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_index"
3-
version = "0.21.2"
3+
version = "0.22.0"
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.8", default-features = false }
48-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.3" }
49-
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
50-
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.32", default-features = false }
47+
rattler_networking = { path = "../rattler_networking", version = "0.22.9", default-features = false }
48+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.4" }
49+
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false }
50+
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.33", default-features = false }
5151
reqwest = { workspace = true, default-features = false, features = [
5252
"http2",
5353
"macos-system-configuration",

crates/rattler_libsolv_c/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.1.3](https://github.com/conda/rattler/compare/rattler_libsolv_c-v1.1.2...rattler_libsolv_c-v1.1.3) - 2025-03-10
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [1.1.2](https://github.com/conda/rattler/compare/rattler_libsolv_c-v1.1.1...rattler_libsolv_c-v1.1.2) - 2025-02-18
1016

1117
### Other

crates/rattler_libsolv_c/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_libsolv_c"
3-
version = "1.1.2"
3+
version = "1.1.3"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Bindings for libsolv"

crates/rattler_lock/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.47](https://github.com/conda/rattler/compare/rattler_lock-v0.22.46...rattler_lock-v0.22.47) - 2025-03-10
10+
11+
### Other
12+
13+
- release ([#1137](https://github.com/conda/rattler/pull/1137))
14+
915
## [0.22.46](https://github.com/conda/rattler/compare/rattler_lock-v0.22.45...rattler_lock-v0.22.46) - 2025-02-28
1016

1117
### Fixed

crates/rattler_lock/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_lock"
3-
version = "0.22.46"
3+
version = "0.22.47"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust data types for conda lock"
@@ -15,8 +15,8 @@ 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.3", default-features = false }
19-
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.4", default-features = false }
19+
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false }
2020
file_url = { path = "../file_url", version = "0.2.3" }
2121
pep508_rs = { workspace = true }
2222
pep440_rs = { workspace = true }

crates/rattler_macros/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.0.7](https://github.com/conda/rattler/compare/rattler_macros-v1.0.6...rattler_macros-v1.0.7) - 2025-03-10
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [1.0.6](https://github.com/conda/rattler/compare/rattler_macros-v1.0.5...rattler_macros-v1.0.6) - 2025-02-18
1016

1117
### Other

crates/rattler_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_macros"
3-
version = "1.0.6"
3+
version = "1.0.7"
44
edition.workspace = true
55
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
66
description = "A crate that provideds some procedural macros for the rattler project"

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.3](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.2...rattler_menuinst-v0.2.3) - 2025-03-10
11+
12+
### Other
13+
14+
- update Cargo.toml dependencies
15+
1016
## [0.2.2](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.1...rattler_menuinst-v0.2.2) - 2025-03-04
1117

1218
### Fixed

crates/rattler_menuinst/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_menuinst"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition.workspace = true
55
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
66
description = "Install menu entries for a Conda package"
@@ -15,8 +15,8 @@ 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.3", default-features = false }
19-
rattler_shell = { path = "../rattler_shell", version = "0.22.22", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.4", default-features = false }
19+
rattler_shell = { path = "../rattler_shell", version = "0.22.23", default-features = false }
2020
thiserror = { workspace = true }
2121
unicode-normalization = { workspace = true }
2222
regex = { 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.9](https://github.com/conda/rattler/compare/rattler_networking-v0.22.8...rattler_networking-v0.22.9) - 2025-03-10
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.22.8](https://github.com/conda/rattler/compare/rattler_networking-v0.22.7...rattler_networking-v0.22.8) - 2025-03-04
1016

1117
### Added

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.8"
3+
version = "0.22.9"
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.33](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.32...rattler_package_streaming-v0.22.33) - 2025-03-10
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.22.32](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.31...rattler_package_streaming-v0.22.32) - 2025-03-04
1016

1117
### Added

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.32"
3+
version = "0.22.33"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Extract and stream of Conda package archives"
@@ -16,9 +16,9 @@ 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.3", default-features = false }
20-
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false }
21-
rattler_networking = { path = "../rattler_networking", version = "0.22.8", default-features = false }
19+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.4", default-features = false }
20+
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false }
21+
rattler_networking = { path = "../rattler_networking", version = "0.22.9", default-features = false }
2222
rattler_redaction = { version = "0.1.8", path = "../rattler_redaction", features = [
2323
"reqwest",
2424
"reqwest-middleware",

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.1](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.22.0...rattler_repodata_gateway-v0.22.1) - 2025-03-10
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.22.0](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.40...rattler_repodata_gateway-v0.22.0) - 2025-03-04
1016

1117
### Added

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.22.0"
3+
version = "0.22.1"
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.3", default-features = false, optional = true }
38-
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false, features = ["tokio", "serde"] }
39-
rattler_networking = { path = "../rattler_networking", version = "0.22.8", default-features = false }
37+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.4", default-features = false, optional = true }
38+
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false, features = ["tokio", "serde"] }
39+
rattler_networking = { path = "../rattler_networking", version = "0.22.9", default-features = false }
4040
reqwest = { workspace = true, features = ["stream", "http2"] }
4141
reqwest-middleware = { workspace = true }
4242
rmp-serde = { workspace = true }
@@ -53,7 +53,7 @@ tracing = { workspace = true }
5353
url = { workspace = true, features = ["serde"] }
5454
zstd = { workspace = true }
5555
retry-policies = { workspace = true }
56-
rattler_cache = { version = "0.3.13", path = "../rattler_cache" }
56+
rattler_cache = { version = "0.3.14", path = "../rattler_cache" }
5757
rattler_redaction = { version = "0.1.8", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
5858

5959
[target.'cfg(unix)'.dependencies]

0 commit comments

Comments
 (0)