Skip to content

Commit ae8c4ef

Browse files
authored
chore: release
1 parent 32f4d88 commit ae8c4ef

File tree

24 files changed

+210
-106
lines changed

24 files changed

+210
-106
lines changed

Cargo.lock

+108-70
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.33.0", default-features = false, features = ["indicatif"] }
31-
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.4", default-features = false }
30+
rattler = { path="../rattler", version = "0.33.1", default-features = false, features = ["indicatif"] }
31+
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.5", default-features = false }
3232
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 }
33+
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.22.2", default-features = false, features = ["gateway"] }
34+
rattler_solve = { path="../rattler_solve", version = "1.4.2", default-features = false, features = ["resolvo", "libsolv_c"] }
35+
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "2.0.8", default-features = false }
36+
rattler_cache = { path="../rattler_cache", version = "0.3.15", default-features = false }
37+
rattler_menuinst = { path="../rattler_menuinst", version = "0.2.4", 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.1](https://github.com/conda/rattler/compare/rattler-v0.33.0...rattler-v0.33.1) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [0.33.0](https://github.com/conda/rattler/compare/rattler-v0.32.4...rattler-v0.33.0) - 2025-03-10
1016

1117
### Added

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.33.0"
3+
version = "0.33.1"
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.14", default-features = false }
36-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.4", default-features = false }
35+
rattler_cache = { path = "../rattler_cache", version = "0.3.15", default-features = false }
36+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.5", default-features = false }
3737
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false }
3838
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 }
39+
rattler_shell = { path = "../rattler_shell", version = "0.22.24", default-features = false }
40+
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.34", default-features = false, features = ["reqwest"] }
41+
rattler_menuinst = { path = "../rattler_menuinst", version = "0.2.4", 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.15](https://github.com/conda/rattler/compare/rattler_cache-v0.3.14...rattler_cache-v0.3.15) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [0.3.14](https://github.com/conda/rattler/compare/rattler_cache-v0.3.13...rattler_cache-v0.3.14) - 2025-03-10
1016

1117
### Other

crates/rattler_cache/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_cache"
3-
version = "0.3.14"
3+
version = "0.3.15"
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.4", path = "../rattler_conda_types", default-features = false }
24+
rattler_conda_types = { version = "0.31.5", path = "../rattler_conda_types", default-features = false }
2525
rattler_digest = { version = "1.0.8", path = "../rattler_digest", default-features = false }
2626
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"] }
27+
rattler_package_streaming = { version = "0.22.34", 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.5](https://github.com/conda/rattler/compare/rattler_conda_types-v0.31.4...rattler_conda_types-v0.31.5) - 2025-03-11
10+
11+
### Added
12+
13+
- package record ([#1148](https://github.com/conda/rattler/pull/1148))
14+
915
## [0.31.4](https://github.com/conda/rattler/compare/rattler_conda_types-v0.31.3...rattler_conda_types-v0.31.4) - 2025-03-10
1016

1117
### Added

crates/rattler_conda_types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_conda_types"
3-
version = "0.31.4"
3+
version = "0.31.5"
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"

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.1](https://github.com/conda/rattler/compare/rattler_index-v0.22.0...rattler_index-v0.22.1) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [0.22.0](https://github.com/conda/rattler/compare/rattler_index-v0.21.2...rattler_index-v0.22.0) - 2025-03-10
1016

1117
### Added

crates/rattler_index/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_index"
3-
version = "0.22.0"
3+
version = "0.22.1"
44
edition.workspace = true
55
authors = []
66
description = "A crate to index conda channels and create a repodata.json file."
@@ -45,9 +45,9 @@ opendal = { workspace = true, features = [
4545
"services-fs",
4646
], default-features = false }
4747
rattler_networking = { path = "../rattler_networking", version = "0.22.9", default-features = false }
48-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.4" }
48+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.5" }
4949
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 }
50+
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.34", 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.48](https://github.com/conda/rattler/compare/rattler_lock-v0.22.47...rattler_lock-v0.22.48) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [0.22.47](https://github.com/conda/rattler/compare/rattler_lock-v0.22.46...rattler_lock-v0.22.47) - 2025-03-10
1016

1117
### Other

crates/rattler_lock/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_lock"
3-
version = "0.22.47"
3+
version = "0.22.48"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust data types for conda lock"
@@ -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.4", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.5", default-features = false }
1919
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 }

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.4](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.3...rattler_menuinst-v0.2.4) - 2025-03-11
11+
12+
### Other
13+
14+
- updated the following local packages: rattler_conda_types
15+
1016
## [0.2.3](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.2...rattler_menuinst-v0.2.3) - 2025-03-10
1117

1218
### Other

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.3"
3+
version = "0.2.4"
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.4", default-features = false }
19-
rattler_shell = { path = "../rattler_shell", version = "0.22.23", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.5", default-features = false }
19+
rattler_shell = { path = "../rattler_shell", version = "0.22.24", default-features = false }
2020
thiserror = { workspace = true }
2121
unicode-normalization = { workspace = true }
2222
regex = { workspace = true }

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.34](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.33...rattler_package_streaming-v0.22.34) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [0.22.33](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.32...rattler_package_streaming-v0.22.33) - 2025-03-10
1016

1117
### Other

crates/rattler_package_streaming/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_package_streaming"
3-
version = "0.22.33"
3+
version = "0.22.34"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Extract and stream of Conda package archives"
@@ -16,7 +16,7 @@ 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.4", default-features = false }
19+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.5", default-features = false }
2020
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false }
2121
rattler_networking = { path = "../rattler_networking", version = "0.22.9", default-features = false }
2222
rattler_redaction = { version = "0.1.8", path = "../rattler_redaction", features = [

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.2](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.22.1...rattler_repodata_gateway-v0.22.2) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [0.22.1](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.22.0...rattler_repodata_gateway-v0.22.1) - 2025-03-10
1016

1117
### Other

crates/rattler_repodata_gateway/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_repodata_gateway"
3-
version = "0.22.1"
3+
version = "0.22.2"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "A crate to interact with Conda repodata"
@@ -34,7 +34,7 @@ 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.4", default-features = false, optional = true }
37+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.5", default-features = false, optional = true }
3838
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false, features = ["tokio", "serde"] }
3939
rattler_networking = { path = "../rattler_networking", version = "0.22.9", default-features = false }
4040
reqwest = { workspace = true, features = ["stream", "http2"] }
@@ -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.14", path = "../rattler_cache" }
56+
rattler_cache = { version = "0.3.15", path = "../rattler_cache" }
5757
rattler_redaction = { version = "0.1.8", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
5858

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

crates/rattler_shell/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.24](https://github.com/conda/rattler/compare/rattler_shell-v0.22.23...rattler_shell-v0.22.24) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [0.22.23](https://github.com/conda/rattler/compare/rattler_shell-v0.22.22...rattler_shell-v0.22.23) - 2025-03-10
1016

1117
### Other

crates/rattler_shell/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_shell"
3-
version = "0.22.23"
3+
version = "0.22.24"
44
edition.workspace = true
55
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
66
description = "A crate to help with activation and deactivation of a conda environment"
@@ -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.4", default-features = false }
18+
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.5", 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.2](https://github.com/conda/rattler/compare/rattler_solve-v1.4.1...rattler_solve-v1.4.2) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [1.4.1](https://github.com/conda/rattler/compare/rattler_solve-v1.4.0...rattler_solve-v1.4.1) - 2025-03-10
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.4.1"
3+
version = "1.4.2"
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.4", default-features = false }
14+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.31.5", default-features = false }
1515
rattler_digest = { path = "../rattler_digest", version = "1.0.8", default-features = false }
1616
libc = { workspace = true, optional = true }
1717
chrono = { workspace = true }

crates/rattler_virtual_packages/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+
## [2.0.8](https://github.com/conda/rattler/compare/rattler_virtual_packages-v2.0.7...rattler_virtual_packages-v2.0.8) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [2.0.7](https://github.com/conda/rattler/compare/rattler_virtual_packages-v2.0.6...rattler_virtual_packages-v2.0.7) - 2025-03-10
1016

1117
### Other

crates/rattler_virtual_packages/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_virtual_packages"
3-
version = "2.0.7"
3+
version = "2.0.8"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Library to work with and detect Conda virtual packages"
@@ -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.4", default-features = false }
17+
rattler_conda_types = { path="../rattler_conda_types", version = "0.31.5", default-features = false }
1818
regex = { workspace = true }
1919
serde = { workspace = true, features = ["derive"] }
2020
thiserror = { workspace = true }

0 commit comments

Comments
 (0)