Skip to content

Commit c125172

Browse files
authored
chore: release (#952)
1 parent 6cb97fe commit c125172

File tree

27 files changed

+129
-45
lines changed

27 files changed

+129
-45
lines changed

crates/file_url/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.2.0](https://github.com/conda/rattler/compare/file_url-v0.1.7...file_url-v0.2.0) - 2024-11-30
10+
11+
### Added
12+
13+
- merge pixi-build branch ([#950](https://github.com/conda/rattler/pull/950))
14+
915
## [0.1.7](https://github.com/conda/rattler/compare/file_url-v0.1.6...file_url-v0.1.7) - 2024-11-04
1016

1117
### Other

crates/file_url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "file_url"
3-
version = "0.1.7"
3+
version = "0.2.0"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Helper functions to work with file:// urls"

crates/rattler-bin/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ 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.28.3", default-features = false, features = ["indicatif"] }
31-
rattler_conda_types = { path="../rattler_conda_types", version = "0.29.2", default-features = false }
32-
rattler_networking = { path="../rattler_networking", version = "0.21.6", default-features = false, features = ["gcs"] }
33-
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.23", default-features = false, features = ["gateway"] }
34-
rattler_solve = { path="../rattler_solve", version = "1.2.3", default-features = false, features = ["resolvo", "libsolv_c"] }
35-
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.1.10", default-features = false }
36-
rattler_cache = { path="../rattler_cache", version = "0.2.11", default-features = false }
30+
rattler = { path="../rattler", version = "0.28.4", default-features = false, features = ["indicatif"] }
31+
rattler_conda_types = { path="../rattler_conda_types", version = "0.29.3", default-features = false }
32+
rattler_networking = { path="../rattler_networking", version = "0.21.7", default-features = false, features = ["gcs"] }
33+
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.24", default-features = false, features = ["gateway"] }
34+
rattler_solve = { path="../rattler_solve", version = "1.2.4", default-features = false, features = ["resolvo", "libsolv_c"] }
35+
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.1.11", default-features = false }
36+
rattler_cache = { path="../rattler_cache", version = "0.2.12", default-features = false }
3737
reqwest = { workspace = true }
3838
reqwest-middleware = { workspace = true }
3939
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }

crates/rattler/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.28.4](https://github.com/conda/rattler/compare/rattler-v0.28.3...rattler-v0.28.4) - 2024-11-30
10+
11+
### Added
12+
13+
- use `fs-err` also for tokio ([#958](https://github.com/conda/rattler/pull/958))
14+
- Move files to .trash folder if they are in use ([#953](https://github.com/conda/rattler/pull/953))
15+
- merge pixi-build branch ([#950](https://github.com/conda/rattler/pull/950))
16+
917
## [0.28.3](https://github.com/conda/rattler/compare/rattler-v0.28.2...rattler-v0.28.3) - 2024-11-18
1018

1119
### 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.28.3"
3+
version = "0.28.4"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust library to install conda environments"
@@ -32,12 +32,12 @@ 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.2.11", default-features = false }
36-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.2", default-features = false }
35+
rattler_cache = { path = "../rattler_cache", version = "0.2.12", default-features = false }
36+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.3", default-features = false }
3737
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false }
38-
rattler_networking = { path = "../rattler_networking", version = "0.21.6", default-features = false }
39-
rattler_shell = { path = "../rattler_shell", version = "0.22.7", default-features = false }
40-
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.14", default-features = false, features = ["reqwest"] }
38+
rattler_networking = { path = "../rattler_networking", version = "0.21.7", default-features = false }
39+
rattler_shell = { path = "../rattler_shell", version = "0.22.8", default-features = false }
40+
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.15", default-features = false, features = ["reqwest"] }
4141
reflink-copy = { workspace = true }
4242
regex = { workspace = true }
4343
reqwest = { workspace = true, features = ["stream", "json", "gzip"] }

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.2.12](https://github.com/conda/rattler/compare/rattler_cache-v0.2.11...rattler_cache-v0.2.12) - 2024-11-30
10+
11+
### Added
12+
13+
- use `fs-err` also for tokio ([#958](https://github.com/conda/rattler/pull/958))
14+
915
## [0.2.11](https://github.com/conda/rattler/compare/rattler_cache-v0.2.10...rattler_cache-v0.2.11) - 2024-11-18
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.2.11"
3+
version = "0.2.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.29.2", path = "../rattler_conda_types", default-features = false }
21+
rattler_conda_types = { version = "0.29.3", path = "../rattler_conda_types", default-features = false }
2222
rattler_digest = { version = "1.0.3", path = "../rattler_digest", default-features = false }
23-
rattler_networking = { version = "0.21.6", path = "../rattler_networking", default-features = false }
24-
rattler_package_streaming = { version = "0.22.14", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
23+
rattler_networking = { version = "0.21.7", path = "../rattler_networking", default-features = false }
24+
rattler_package_streaming = { version = "0.22.15", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
2525
reqwest.workspace = true
2626
tokio = { workspace = true, features = ["macros"] }
2727
tracing.workspace = true

crates/rattler_conda_types/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.29.3](https://github.com/conda/rattler/compare/rattler_conda_types-v0.29.2...rattler_conda_types-v0.29.3) - 2024-11-30
10+
11+
### Added
12+
13+
- merge pixi-build branch ([#950](https://github.com/conda/rattler/pull/950))
14+
15+
### Fixed
16+
17+
- `pixi project version` doesn't reset minor and patch version numbers ([#954](https://github.com/conda/rattler/pull/954))
18+
919
## [0.29.2](https://github.com/conda/rattler/compare/rattler_conda_types-v0.29.1...rattler_conda_types-v0.29.2) - 2024-11-18
1020

1121
### Added

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.29.2"
3+
version = "0.29.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"
@@ -12,7 +12,7 @@ readme.workspace = true
1212

1313
[dependencies]
1414
chrono = { workspace = true }
15-
file_url = { path = "../file_url", version = "0.1.7" }
15+
file_url = { path = "../file_url", version = "0.2.0" }
1616
fxhash = { workspace = true }
1717
glob = { workspace = true }
1818
hex = { workspace = true }
@@ -37,7 +37,7 @@ tracing = { workspace = true }
3737
typed-path = { workspace = true }
3838
url = { workspace = true, features = ["serde"] }
3939
indexmap = { workspace = true }
40-
rattler_redaction = { version = "0.1.3", path = "../rattler_redaction" }
40+
rattler_redaction = { version = "0.1.4", path = "../rattler_redaction" }
4141
dirs = { workspace = true }
4242

4343
[dev-dependencies]

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.19.37](https://github.com/conda/rattler/compare/rattler_index-v0.19.36...rattler_index-v0.19.37) - 2024-11-30
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types, rattler_package_streaming
14+
915
## [0.19.36](https://github.com/conda/rattler/compare/rattler_index-v0.19.35...rattler_index-v0.19.36) - 2024-11-18
1016

1117
### Other

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.19.36"
3+
version = "0.19.37"
44
edition.workspace = true
55
authors = []
66
description = "A crate that indexes directories containing conda packages to create local conda channels"
@@ -12,9 +12,9 @@ readme.workspace = true
1212

1313
[dependencies]
1414
fs-err = { workspace = true }
15-
rattler_conda_types = { path="../rattler_conda_types", version = "0.29.2", default-features = false }
15+
rattler_conda_types = { path="../rattler_conda_types", version = "0.29.3", default-features = false }
1616
rattler_digest = { path="../rattler_digest", version = "1.0.3", default-features = false }
17-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.22.14", default-features = false }
17+
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.22.15", default-features = false }
1818
serde_json = { workspace = true }
1919
tracing = { workspace = true }
2020
walkdir = { workspace = true }

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.32](https://github.com/conda/rattler/compare/rattler_lock-v0.22.31...rattler_lock-v0.22.32) - 2024-11-30
10+
11+
### Other
12+
13+
- updated the following local packages: file_url, rattler_conda_types
14+
915
## [0.22.31](https://github.com/conda/rattler/compare/rattler_lock-v0.22.30...rattler_lock-v0.22.31) - 2024-11-18
1016

1117
### Other

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.31"
3+
version = "0.22.32"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust data types for conda lock"
@@ -15,9 +15,9 @@ 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.29.2", default-features = false }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.3", default-features = false }
1919
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false }
20-
file_url = { path = "../file_url", version = "0.1.7" }
20+
file_url = { path = "../file_url", version = "0.2.0" }
2121
pep508_rs = { workspace = true }
2222
pep440_rs = { workspace = true }
2323
serde = { workspace = true, features = ["derive"] }

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.21.7](https://github.com/conda/rattler/compare/rattler_networking-v0.21.6...rattler_networking-v0.21.7) - 2024-11-30
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.21.6](https://github.com/conda/rattler/compare/rattler_networking-v0.21.5...rattler_networking-v0.21.6) - 2024-11-18
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.21.6"
3+
version = "0.21.7"
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.15](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.14...rattler_package_streaming-v0.22.15) - 2024-11-30
10+
11+
### Added
12+
13+
- use `fs-err` also for tokio ([#958](https://github.com/conda/rattler/pull/958))
14+
915
## [0.22.14](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.13...rattler_package_streaming-v0.22.14) - 2024-11-18
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.14"
3+
version = "0.22.15"
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.29.2", default-features = false }
19+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.3", default-features = false }
2020
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false }
21-
rattler_networking = { path = "../rattler_networking", version = "0.21.6", default-features = false }
22-
rattler_redaction = { version = "0.1.3", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
21+
rattler_networking = { path = "../rattler_networking", version = "0.21.7", default-features = false }
22+
rattler_redaction = { version = "0.1.4", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
2323
reqwest = { workspace = true, features = ["stream"], optional = true }
2424
reqwest-middleware = { workspace = true, optional = true }
2525
serde_json = { workspace = true }

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.4](https://github.com/conda/rattler/compare/rattler_redaction-v0.1.3...rattler_redaction-v0.1.4) - 2024-11-30
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.1.3](https://github.com/conda/rattler/compare/rattler_redaction-v0.1.2...rattler_redaction-v0.1.3) - 2024-11-04
1016

1117
### Other

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.3"
3+
version = "0.1.4"
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.21.24](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.23...rattler_repodata_gateway-v0.21.24) - 2024-11-30
10+
11+
### Added
12+
13+
- use `fs-err` also for tokio ([#958](https://github.com/conda/rattler/pull/958))
14+
915
## [0.21.23](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.22...rattler_repodata_gateway-v0.21.23) - 2024-11-18
1016

1117
### Other

crates/rattler_repodata_gateway/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_repodata_gateway"
3-
version = "0.21.23"
3+
version = "0.21.24"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "A crate to interact with Conda repodata"
@@ -22,7 +22,7 @@ cache_control = { workspace = true }
2222
chrono = { workspace = true, features = ["std", "serde", "alloc", "clock"] }
2323
dashmap = { workspace = true }
2424
dirs = { workspace = true }
25-
file_url = { path = "../file_url", version = "0.1.7" }
25+
file_url = { path = "../file_url", version = "0.2.0" }
2626
futures = { workspace = true }
2727
hex = { workspace = true, features = ["serde"] }
2828
http = { workspace = true, optional = true }
@@ -36,9 +36,9 @@ memmap2 = { workspace = true, optional = true }
3636
ouroboros = { workspace = true, optional = true }
3737
parking_lot = { workspace = true, optional = true }
3838
pin-project-lite = { workspace = true }
39-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.2", default-features = false, optional = true }
39+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.3", default-features = false, optional = true }
4040
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false, features = ["tokio", "serde"] }
41-
rattler_networking = { path = "../rattler_networking", version = "0.21.6", default-features = false }
41+
rattler_networking = { path = "../rattler_networking", version = "0.21.7", default-features = false }
4242
reqwest = { workspace = true, features = ["stream", "http2"] }
4343
reqwest-middleware = { workspace = true }
4444
rmp-serde = { workspace = true }
@@ -54,8 +54,8 @@ tokio-util = { workspace = true, features = ["codec", "io"] }
5454
tracing = { workspace = true }
5555
url = { workspace = true, features = ["serde"] }
5656
zstd = { workspace = true }
57-
rattler_cache = { version = "0.2.11", path = "../rattler_cache" }
58-
rattler_redaction = { version = "0.1.3", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
57+
rattler_cache = { version = "0.2.12", path = "../rattler_cache" }
58+
rattler_redaction = { version = "0.1.4", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
5959

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

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.8](https://github.com/conda/rattler/compare/rattler_shell-v0.22.7...rattler_shell-v0.22.8) - 2024-11-30
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [0.22.7](https://github.com/conda/rattler/compare/rattler_shell-v0.22.6...rattler_shell-v0.22.7) - 2024-11-18
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.7"
3+
version = "0.22.8"
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.29.2", default-features = false }
18+
rattler_conda_types = { path="../rattler_conda_types", version = "0.29.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.2.4](https://github.com/conda/rattler/compare/rattler_solve-v1.2.3...rattler_solve-v1.2.4) - 2024-11-30
10+
11+
### Other
12+
13+
- updated the following local packages: rattler_conda_types
14+
915
## [1.2.3](https://github.com/conda/rattler/compare/rattler_solve-v1.2.2...rattler_solve-v1.2.3) - 2024-11-18
1016

1117
### Other

0 commit comments

Comments
 (0)