Skip to content

Commit b7835ae

Browse files
authored
chore: release (#1121)
1 parent 9bba9d9 commit b7835ae

File tree

28 files changed

+145
-66
lines changed

28 files changed

+145
-66
lines changed

Cargo.lock

+14-13
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.2", default-features = false, features = ["indicatif"] }
31-
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.1", default-features = false }
32-
rattler_networking = { path="../rattler_networking", version = "0.22.6", default-features = false, features = ["gcs", "s3"] }
33-
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.39", default-features = false, features = ["gateway"] }
34-
rattler_solve = { path="../rattler_solve", version = "1.3.10", default-features = false, features = ["resolvo", "libsolv_c"] }
35-
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "2.0.5", default-features = false }
36-
rattler_cache = { path="../rattler_cache", version = "0.3.11", default-features = false }
37-
rattler_menuinst = { path="../rattler_menuinst", version = "0.2.0", default-features = false }
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"] }
35+
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 }
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.3](https://github.com/conda/rattler/compare/rattler-v0.32.2...rattler-v0.32.3) - 2025-02-28
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.32.2](https://github.com/conda/rattler/compare/rattler-v0.32.1...rattler-v0.32.2) - 2025-02-27
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.2"
3+
version = "0.32.3"
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.11", default-features = false }
36-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.1", default-features = false }
37-
rattler_digest = { path = "../rattler_digest", version = "1.0.6", default-features = false }
38-
rattler_networking = { path = "../rattler_networking", version = "0.22.6", default-features = false }
39-
rattler_shell = { path = "../rattler_shell", version = "0.22.21", default-features = false }
40-
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.30", default-features = false, features = ["reqwest"] }
41-
rattler_menuinst = { path = "../rattler_menuinst", version = "0.2.0", default-features = false }
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 }
37+
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 }
39+
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 }
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.12](https://github.com/conda/rattler/compare/rattler_cache-v0.3.11...rattler_cache-v0.3.12) - 2025-02-28
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.3.11](https://github.com/conda/rattler/compare/rattler_cache-v0.3.10...rattler_cache-v0.3.11) - 2025-02-27
1016

1117
### Other

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.11"
3+
version = "0.3.12"
44
description = "A crate to manage the caching of data in rattler"
55
categories.workspace = true
66
homepage.workspace = true
@@ -18,10 +18,10 @@ fs-err.workspace = true
1818
fxhash.workspace = true
1919
itertools.workspace = true
2020
parking_lot.workspace = true
21-
rattler_conda_types = { version = "0.31.1", path = "../rattler_conda_types", default-features = false }
22-
rattler_digest = { version = "1.0.6", path = "../rattler_digest", default-features = false }
23-
rattler_networking = { version = "0.22.6", path = "../rattler_networking", default-features = false }
24-
rattler_package_streaming = { version = "0.22.30", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
21+
rattler_conda_types = { version = "0.31.2", path = "../rattler_conda_types", default-features = false }
22+
rattler_digest = { version = "1.0.7", path = "../rattler_digest", default-features = false }
23+
rattler_networking = { version = "0.22.7", path = "../rattler_networking", default-features = false }
24+
rattler_package_streaming = { version = "0.22.31", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
2525
reqwest.workspace = true
2626
tempfile.workspace = true
2727
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.2](https://github.com/conda/rattler/compare/rattler_conda_types-v0.31.1...rattler_conda_types-v0.31.2) - 2025-02-28
10+
11+
### Fixed
12+
13+
- roundtrip of arch/platform in lock files (#1124)
14+
915
## [0.31.1](https://github.com/conda/rattler/compare/rattler_conda_types-v0.31.0...rattler_conda_types-v0.31.1) - 2025-02-27
1016

1117
### Added

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.1"
3+
version = "0.31.2"
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,7 +24,7 @@ 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.6", default-features = false, features = [
27+
rattler_digest = { path = "../rattler_digest", version = "1.0.7", default-features = false, features = [
2828
"serde",
2929
] }
3030
rattler_macros = { path = "../rattler_macros", version = "1.0.6", default-features = false }

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.7](https://github.com/conda/rattler/compare/rattler_digest-v1.0.6...rattler_digest-v1.0.7) - 2025-02-28
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [1.0.6](https://github.com/conda/rattler/compare/rattler_digest-v1.0.5...rattler_digest-v1.0.6) - 2025-02-18
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.6"
3+
version = "1.0.7"
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.21.1](https://github.com/conda/rattler/compare/rattler_index-v0.21.0...rattler_index-v0.21.1) - 2025-02-28
10+
11+
### Other
12+
13+
- create reader from opendal buffer (#1123)
14+
915
## [0.21.0](https://github.com/conda/rattler/compare/rattler_index-v0.20.13...rattler_index-v0.21.0) - 2025-02-27
1016

1117
### Added

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.0"
3+
version = "0.21.1"
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.6", default-features = false }
48-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.1" }
49-
rattler_digest = { path = "../rattler_digest", version = "1.0.6", default-features = false }
50-
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.30", 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" }
49+
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 }
5151
reqwest = { workspace = true, default-features = false, features = [
5252
"http2",
5353
"macos-system-configuration",

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.46](https://github.com/conda/rattler/compare/rattler_lock-v0.22.45...rattler_lock-v0.22.46) - 2025-02-28
10+
11+
### Fixed
12+
13+
- roundtrip of arch/platform in lock files (#1124)
14+
915
## [0.22.45](https://github.com/conda/rattler/compare/rattler_lock-v0.22.44...rattler_lock-v0.22.45) - 2025-02-27
1016

1117
### Fixed

crates/rattler_lock/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_lock"
3-
version = "0.22.45"
3+
version = "0.22.46"
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.1", default-features = false }
19-
rattler_digest = { path = "../rattler_digest", version = "1.0.6", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2", default-features = false }
19+
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 }
2222
pep440_rs = { workspace = true }
@@ -33,4 +33,4 @@ typed-path = { workspace = true }
3333
insta = { workspace = true, features = ["yaml"] }
3434
serde_json = { workspace = true }
3535
similar-asserts = { workspace = true }
36-
rstest = { workspace = true }
36+
rstest = { 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.1](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.0...rattler_menuinst-v0.2.1) - 2025-02-28
11+
12+
### Added
13+
14+
- add fake folders method on win for easier testing (#1125)
15+
1016
## [0.2.0](https://github.com/conda/rattler/compare/rattler_menuinst-v0.1.0...rattler_menuinst-v0.2.0) - 2025-02-27
1117

1218
### Added

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.0"
3+
version = "0.2.1"
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.1", default-features = false }
19-
rattler_shell = { path = "../rattler_shell", version = "0.22.21", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.2", default-features = false }
19+
rattler_shell = { path = "../rattler_shell", version = "0.22.22", 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.7](https://github.com/conda/rattler/compare/rattler_networking-v0.22.6...rattler_networking-v0.22.7) - 2025-02-28
10+
11+
### Fixed
12+
13+
- R2 key names in tests (#1115)
14+
915
## [0.22.6](https://github.com/conda/rattler/compare/rattler_networking-v0.22.5...rattler_networking-v0.22.6) - 2025-02-27
1016

1117
### Fixed

0 commit comments

Comments
 (0)