Skip to content

Commit 04ec758

Browse files
authored
chore: release (#575)
## πŸ€– New release * `rattler`: 0.19.4 -> 0.19.5 (βœ“ API compatible changes) * `rattler_conda_types`: 0.20.2 -> 0.20.3 (βœ“ API compatible changes) * `rattler_networking`: 0.19.2 -> 0.20.0 (⚠️ API breaking changes) * `rattler_lock`: 0.20.2 -> 0.21.0 (⚠️ API breaking changes) * `rattler_package_streaming`: 0.20.0 -> 0.20.1 * `rattler_repodata_gateway`: 0.19.3 -> 0.19.4 * `rattler_solve`: 0.20.2 -> 0.20.3 * `rattler_virtual_packages`: 0.19.3 -> 0.19.4 * `rattler_index`: 0.19.3 -> 0.19.4 * `rattler_shell`: 0.19.3 -> 0.19.4 ### ⚠️ `rattler_networking` breaking changes ``` --- failure constructible_struct_adds_private_field: struct no longer constructible due to new private field --- Description: A struct constructible with a struct literal has a new non-public field. It can no longer be constructed using a struct literal outside of its crate. ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.29.1/src/lints/constructible_struct_adds_private_field.ron Failed in: field FileStorage.cache in /tmp/.tmpQ4WEef/rattler/crates/rattler_networking/src/authentication_storage/backends/file.rs:28 ``` ### ⚠️ `rattler_lock` breaking changes ``` --- failure constructible_struct_adds_field: externally-constructible struct adds field --- Description: A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field. ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.29.1/src/lints/constructible_struct_adds_field.ron Failed in: field PypiPackageData.url_or_path in /tmp/.tmpQ4WEef/rattler/crates/rattler_lock/src/pypi.rs:22 --- failure inherent_method_missing: pub method removed or renamed --- Description: A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.29.1/src/lints/inherent_method_missing.ron Failed in: Package::url, previously in file /tmp/.tmpSe8F94/rattler_lock/src/lib.rs:448 --- failure struct_pub_field_missing: pub struct's pub field removed or renamed --- Description: A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.29.1/src/lints/struct_pub_field_missing.ron Failed in: field url of struct PypiPackageData, previously in file /tmp/.tmpSe8F94/rattler_lock/src/pypi.rs:22 ``` <details><summary><i><b>Changelog</b></i></summary><p> ## `rattler` <blockquote> ## [0.19.5](rattler-v0.19.4...rattler-v0.19.5) - 2024-03-21 ### Fixed - typo ([#576](#576)) </blockquote> ## `rattler_conda_types` <blockquote> ## [0.20.3](rattler_conda_types-v0.20.2...rattler_conda_types-v0.20.3) - 2024-03-21 ### Fixed - allow not starts with in strict mode ([#577](#577)) </blockquote> ## `rattler_networking` <blockquote> ## [0.20.0](rattler_networking-v0.19.2...rattler_networking-v0.20.0) - 2024-03-21 ### Fixed - implement cache for authentication filestorage backend ([#573](#573)) </blockquote> ## `rattler_lock` <blockquote> ## [0.21.0](rattler_lock-v0.20.2...rattler_lock-v0.21.0) - 2024-03-21 ### Added - allow passing pypi paths ([#572](#572)) </blockquote> ## `rattler_package_streaming` <blockquote> ## [0.20.1](rattler_package_streaming-v0.20.0...rattler_package_streaming-v0.20.1) - 2024-03-21 ### Other - updated the following local packages: rattler_conda_types, rattler_networking </blockquote> ## `rattler_repodata_gateway` <blockquote> ## [0.19.4](rattler_repodata_gateway-v0.19.3...rattler_repodata_gateway-v0.19.4) - 2024-03-21 ### Other - updated the following local packages: rattler_conda_types, rattler_networking </blockquote> ## `rattler_solve` <blockquote> ## [0.20.3](rattler_solve-v0.20.2...rattler_solve-v0.20.3) - 2024-03-21 ### Other - updated the following local packages: rattler_conda_types </blockquote> ## `rattler_virtual_packages` <blockquote> ## [0.19.4](rattler_virtual_packages-v0.19.3...rattler_virtual_packages-v0.19.4) - 2024-03-21 ### Other - updated the following local packages: rattler_conda_types </blockquote> ## `rattler_index` <blockquote> ## [0.19.4](rattler_index-v0.19.3...rattler_index-v0.19.4) - 2024-03-21 ### Other - updated the following local packages: rattler_conda_types </blockquote> ## `rattler_shell` <blockquote> ## [0.19.4](rattler_shell-v0.19.3...rattler_shell-v0.19.4) - 2024-03-21 ### Other - updated the following local packages: rattler_conda_types </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). Signed-off-by: Bas <4995967+baszalmstra@users.noreply.github.com> Co-authored-by: Bas <4995967+baszalmstra@users.noreply.github.com>
1 parent 2fb7fc1 commit 04ec758

File tree

21 files changed

+79
-29
lines changed

21 files changed

+79
-29
lines changed

β€Žcrates/rattler-bin/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ futures = { workspace = true }
3030
indicatif = { workspace = true }
3131
itertools = { workspace = true }
3232
once_cell = { workspace = true }
33-
rattler = { path="../rattler", version = "0.19.4", default-features = false }
34-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
35-
rattler_networking = { path="../rattler_networking", version = "0.19.2", default-features = false }
36-
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.19.3", default-features = false, features = ["sparse"] }
37-
rattler_solve = { path="../rattler_solve", version = "0.20.2", default-features = false, features = ["resolvo", "libsolv_c"] }
38-
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "0.19.3", default-features = false }
33+
rattler = { path="../rattler", version = "0.19.5", default-features = false }
34+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false }
35+
rattler_networking = { path="../rattler_networking", version = "0.20.0", default-features = false }
36+
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.19.4", default-features = false, features = ["sparse"] }
37+
rattler_solve = { path="../rattler_solve", version = "0.20.3", default-features = false, features = ["resolvo", "libsolv_c"] }
38+
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "0.19.4", default-features = false }
3939
reqwest = { workspace = true }
4040
reqwest-middleware = { workspace = true }
4141
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }

β€Žcrates/rattler/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.19.5](https://github.com/mamba-org/rattler/compare/rattler-v0.19.4...rattler-v0.19.5) - 2024-03-21
10+
11+
### Fixed
12+
- typo ([#576](https://github.com/mamba-org/rattler/pull/576))
13+
914
## [0.19.4](https://github.com/mamba-org/rattler/compare/rattler-v0.19.3...rattler-v0.19.4) - 2024-03-19
1015

1116
### Fixed

β€Žcrates/rattler/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler"
3-
version = "0.19.4"
3+
version = "0.19.5"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust library to install conda environments"
@@ -36,10 +36,10 @@ memmap2 = { workspace = true }
3636
nom = { workspace = true }
3737
once_cell = { workspace = true }
3838
pin-project-lite = { workspace = true }
39-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
39+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false }
4040
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false }
41-
rattler_networking = { path="../rattler_networking", version = "0.19.2", default-features = false }
42-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.0", default-features = false, features = ["reqwest"] }
41+
rattler_networking = { path="../rattler_networking", version = "0.20.0", default-features = false }
42+
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.1", default-features = false, features = ["reqwest"] }
4343
reflink-copy = { workspace = true }
4444
regex = { workspace = true }
4545
reqwest = { workspace = true, features = ["stream", "json", "gzip"] }

β€Žcrates/rattler_conda_types/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.20.3](https://github.com/mamba-org/rattler/compare/rattler_conda_types-v0.20.2...rattler_conda_types-v0.20.3) - 2024-03-21
10+
11+
### Fixed
12+
- allow not starts with in strict mode ([#577](https://github.com/mamba-org/rattler/pull/577))
13+
914
## [0.20.2](https://github.com/mamba-org/rattler/compare/rattler_conda_types-v0.20.1...rattler_conda_types-v0.20.2) - 2024-03-14
1015

1116
### Other

β€Ž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.20.2"
3+
version = "0.20.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"

β€Žcrates/rattler_index/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.19.4](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.3...rattler_index-v0.19.4) - 2024-03-21
10+
11+
### Other
12+
- updated the following local packages: rattler_conda_types
13+
914
## [0.19.3](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.2...rattler_index-v0.19.3) - 2024-03-14
1015

1116
### 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.3"
3+
version = "0.19.4"
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.20.2", default-features = false }
15+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false }
1616
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false }
17-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.0", default-features = false }
17+
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.1", default-features = false }
1818
serde_json = { workspace = true }
1919
tracing = { workspace = true }
2020
walkdir = { workspace = true }

β€Žcrates/rattler_lock/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.21.0](https://github.com/mamba-org/rattler/compare/rattler_lock-v0.20.2...rattler_lock-v0.21.0) - 2024-03-21
10+
11+
### Added
12+
- allow passing pypi paths ([#572](https://github.com/mamba-org/rattler/pull/572))
13+
914
## [0.20.2](https://github.com/mamba-org/rattler/compare/rattler_lock-v0.20.1...rattler_lock-v0.20.2) - 2024-03-14
1015

1116
### 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.20.2"
3+
version = "0.21.0"
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.20.2", default-features = false }
18+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false }
1919
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false }
2020
pep508_rs = { workspace = true, features = ["serde"] }
2121
pep440_rs = { workspace = true, features = ["serde"] }

β€Žcrates/rattler_networking/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.20.0](https://github.com/mamba-org/rattler/compare/rattler_networking-v0.19.2...rattler_networking-v0.20.0) - 2024-03-21
10+
11+
### Fixed
12+
- implement cache for authentication filestorage backend ([#573](https://github.com/mamba-org/rattler/pull/573))
13+
914
## [0.19.2](https://github.com/mamba-org/rattler/compare/rattler_networking-v0.19.1...rattler_networking-v0.19.2) - 2024-03-14
1015

1116
### 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.19.2"
3+
version = "0.20.0"
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

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

77
## [Unreleased]
88

9+
## [0.20.1](https://github.com/mamba-org/rattler/compare/rattler_package_streaming-v0.20.0...rattler_package_streaming-v0.20.1) - 2024-03-21
10+
11+
### Other
12+
- updated the following local packages: rattler_conda_types, rattler_networking
13+
914
## [0.20.0](https://github.com/mamba-org/rattler/compare/rattler_package_streaming-v0.19.2...rattler_package_streaming-v0.20.0) - 2024-03-14
1015

1116
### Added

β€Žcrates/rattler_package_streaming/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_package_streaming"
3-
version = "0.20.0"
3+
version = "0.20.1"
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
futures-util = { workspace = true }
1717
itertools = { workspace = true }
1818
num_cpus = { workspace = true }
19-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
19+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false }
2020
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false }
21-
rattler_networking = { path="../rattler_networking", version = "0.19.2", default-features = false }
21+
rattler_networking = { path="../rattler_networking", version = "0.20.0", default-features = false }
2222
reqwest = { workspace = true, features = ["stream"], optional = true }
2323
reqwest-middleware = { workspace = true, optional = true }
2424
serde_json = { workspace = true }

β€Žcrates/rattler_repodata_gateway/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.19.4](https://github.com/mamba-org/rattler/compare/rattler_repodata_gateway-v0.19.3...rattler_repodata_gateway-v0.19.4) - 2024-03-21
10+
11+
### Other
12+
- updated the following local packages: rattler_conda_types, rattler_networking
13+
914
## [0.19.3](https://github.com/mamba-org/rattler/compare/rattler_repodata_gateway-v0.19.2...rattler_repodata_gateway-v0.19.3) - 2024-03-14
1015

1116
### 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.19.3"
3+
version = "0.19.4"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "A crate to interact with Conda repodata"
@@ -32,7 +32,7 @@ serde_json = { workspace = true }
3232
pin-project-lite = { workspace = true }
3333
md-5 = { workspace = true }
3434
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false, features = ["tokio", "serde"] }
35-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false, optional = true }
35+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false, optional = true }
3636
fxhash = { workspace = true, optional = true }
3737
memmap2 = { workspace = true, optional = true }
3838
ouroboros = { workspace = true, optional = true }
@@ -41,7 +41,7 @@ superslice = { workspace = true, optional = true }
4141
itertools = { workspace = true, optional = true }
4242
json-patch = { workspace = true }
4343
hex = { workspace = true, features = ["serde"] }
44-
rattler_networking = { path="../rattler_networking", version = "0.19.2", default-features = false }
44+
rattler_networking = { path="../rattler_networking", version = "0.20.0", default-features = false }
4545

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

β€Žcrates/rattler_shell/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.19.4](https://github.com/mamba-org/rattler/compare/rattler_shell-v0.19.3...rattler_shell-v0.19.4) - 2024-03-21
10+
11+
### Other
12+
- updated the following local packages: rattler_conda_types
13+
914
## [0.19.3](https://github.com/mamba-org/rattler/compare/rattler_shell-v0.19.2...rattler_shell-v0.19.3) - 2024-03-14
1015

1116
### 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.19.3"
3+
version = "0.19.4"
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"
@@ -14,7 +14,7 @@ readme.workspace = true
1414
enum_dispatch = { workspace = true }
1515
indexmap = { workspace = true }
1616
itertools = { workspace = true }
17-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
17+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false }
1818
serde_json = { workspace = true, features = ["preserve_order"] }
1919
shlex = { workspace = true }
2020
sysinfo = { workspace = true, optional = true }

β€Žcrates/rattler_solve/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.20.3](https://github.com/mamba-org/rattler/compare/rattler_solve-v0.20.2...rattler_solve-v0.20.3) - 2024-03-21
10+
11+
### Other
12+
- updated the following local packages: rattler_conda_types
13+
914
## [0.20.2](https://github.com/mamba-org/rattler/compare/rattler_solve-v0.20.1...rattler_solve-v0.20.2) - 2024-03-14
1015

1116
### 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 = "0.20.2"
3+
version = "0.20.3"
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.20.2", default-features = false }
14+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false }
1515
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false }
1616
libc = { workspace = true, optional = true }
1717
anyhow = { workspace = true }

β€Žcrates/rattler_virtual_packages/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.19.4](https://github.com/mamba-org/rattler/compare/rattler_virtual_packages-v0.19.3...rattler_virtual_packages-v0.19.4) - 2024-03-21
10+
11+
### Other
12+
- updated the following local packages: rattler_conda_types
13+
914
## [0.19.3](https://github.com/mamba-org/rattler/compare/rattler_virtual_packages-v0.19.2...rattler_virtual_packages-v0.19.3) - 2024-03-14
1015

1116
### 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 = "0.19.3"
3+
version = "0.19.4"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Library to work with and detect Conda virtual packages"
@@ -15,7 +15,7 @@ cfg-if = { workspace = true }
1515
libloading = { workspace = true }
1616
nom = { workspace = true }
1717
once_cell = { workspace = true }
18-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
18+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.3", default-features = false }
1919
regex = { workspace = true }
2020
serde = { workspace = true, features = ["derive"] }
2121
thiserror = { workspace = true }

0 commit comments

Comments
Β (0)