Skip to content

Commit b2824b5

Browse files
authored
chore: release (#559)
## πŸ€– New release * `rattler`: 0.19.1 -> 0.19.2 (βœ“ API compatible changes) * `rattler_conda_types`: 0.20.0 -> 0.20.1 (βœ“ API compatible changes) * `rattler_package_streaming`: 0.19.1 -> 0.19.2 (βœ“ API compatible changes) * `rattler_lock`: 0.20.0 -> 0.20.1 (βœ“ API compatible changes) * `rattler_repodata_gateway`: 0.19.1 -> 0.19.2 (βœ“ API compatible changes) * `rattler_solve`: 0.20.0 -> 0.20.1 (βœ“ API compatible changes) * `rattler_shell`: 0.19.1 -> 0.19.2 (βœ“ API compatible changes) * `rattler_virtual_packages`: 0.19.1 -> 0.19.2 * `rattler_index`: 0.19.1 -> 0.19.2 <details><summary><i><b>Changelog</b></i></summary><p> ## `rattler` <blockquote> ## [0.19.2](rattler-v0.19.1...rattler-v0.19.2) - 2024-03-08 ### Other - update Cargo.toml dependencies </blockquote> ## `rattler_conda_types` <blockquote> ## [0.20.1](rattler_conda_types-v0.20.0...rattler_conda_types-v0.20.1) - 2024-03-08 ### Fixed - chrono deprecation warnings ([#558](#558)) </blockquote> ## `rattler_package_streaming` <blockquote> ## [0.19.2](rattler_package_streaming-v0.19.1...rattler_package_streaming-v0.19.2) - 2024-03-08 ### Other - update Cargo.toml dependencies </blockquote> ## `rattler_lock` <blockquote> ## [0.20.1](rattler_lock-v0.20.0...rattler_lock-v0.20.1) - 2024-03-08 ### Fixed - chrono deprecation warnings ([#558](#558)) </blockquote> ## `rattler_repodata_gateway` <blockquote> ## [0.19.2](rattler_repodata_gateway-v0.19.1...rattler_repodata_gateway-v0.19.2) - 2024-03-08 ### Fixed - chrono deprecation warnings ([#558](#558)) </blockquote> ## `rattler_solve` <blockquote> ## [0.20.1](rattler_solve-v0.20.0...rattler_solve-v0.20.1) - 2024-03-08 ### Other - update Cargo.toml dependencies </blockquote> ## `rattler_shell` <blockquote> ## [0.19.2](rattler_shell-v0.19.1...rattler_shell-v0.19.2) - 2024-03-08 ### Fixed - better handle utf8 paths in CmdExe and Powershell ([#561](#561)) </blockquote> ## `rattler_virtual_packages` <blockquote> ## [0.19.2](rattler_virtual_packages-v0.19.1...rattler_virtual_packages-v0.19.2) - 2024-03-08 ### Other - updated the following local packages: rattler_conda_types </blockquote> ## `rattler_index` <blockquote> ## [0.19.2](rattler_index-v0.19.1...rattler_index-v0.19.2) - 2024-03-08 ### Other - updated the following local packages: rattler_conda_types, rattler_package_streaming </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 c80ee27 commit b2824b5

File tree

19 files changed

+69
-24
lines changed

19 files changed

+69
-24
lines changed

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

+5-5
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.1", default-features = false }
34-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.0", default-features = false }
33+
rattler = { path="../rattler", version = "0.19.2", default-features = false }
34+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
3535
rattler_networking = { path="../rattler_networking", version = "0.19.1", default-features = false }
36-
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.19.1", default-features = false, features = ["sparse"] }
37-
rattler_solve = { path="../rattler_solve", version = "0.20.0", default-features = false, features = ["resolvo", "libsolv_c"] }
38-
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "0.19.1", default-features = false }
36+
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.19.2", default-features = false, features = ["sparse"] }
37+
rattler_solve = { path="../rattler_solve", version = "0.20.1", default-features = false, features = ["resolvo", "libsolv_c"] }
38+
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "0.19.2", 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.2](https://github.com/mamba-org/rattler/compare/rattler-v0.19.1...rattler-v0.19.2) - 2024-03-08
10+
11+
### Other
12+
- update Cargo.toml dependencies
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler-v0.19.0...rattler-v0.19.1) - 2024-03-06
1015

1116
### Added

β€Žcrates/rattler/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler"
3-
version = "0.19.1"
3+
version = "0.19.2"
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.0", default-features = false }
39+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
4040
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
4141
rattler_networking = { path="../rattler_networking", version = "0.19.1", default-features = false }
42-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.19.1", default-features = false, features = ["reqwest"] }
42+
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.19.2", 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.1](https://github.com/mamba-org/rattler/compare/rattler_conda_types-v0.20.0...rattler_conda_types-v0.20.1) - 2024-03-08
10+
11+
### Fixed
12+
- chrono deprecation warnings ([#558](https://github.com/mamba-org/rattler/pull/558))
13+
914
## [0.20.0](https://github.com/mamba-org/rattler/compare/rattler_conda_types-v0.19.0...rattler_conda_types-v0.20.0) - 2024-03-06
1015

1116
### 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.20.0"
3+
version = "0.20.1"
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.2](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.1...rattler_index-v0.19.2) - 2024-03-08
10+
11+
### Other
12+
- updated the following local packages: rattler_conda_types, rattler_package_streaming
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.0...rattler_index-v0.19.1) - 2024-03-06
1015

1116
### Fixed

β€Ž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.1"
3+
version = "0.19.2"
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.0", default-features = false }
15+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
1616
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
17-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.19.1", default-features = false }
17+
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.19.2", 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.20.1](https://github.com/mamba-org/rattler/compare/rattler_lock-v0.20.0...rattler_lock-v0.20.1) - 2024-03-08
10+
11+
### Fixed
12+
- chrono deprecation warnings ([#558](https://github.com/mamba-org/rattler/pull/558))
13+
914
## [0.20.0](https://github.com/mamba-org/rattler/compare/rattler_lock-v0.19.0...rattler_lock-v0.20.0) - 2024-03-06
1015

1116
### Added

β€Ž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.0"
3+
version = "0.20.1"
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.0", default-features = false }
18+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
1919
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
2020
pep508_rs = { workspace = true, features = ["serde"] }
2121
pep440_rs = { workspace = true, features = ["serde"] }

β€Ž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.19.2](https://github.com/mamba-org/rattler/compare/rattler_package_streaming-v0.19.1...rattler_package_streaming-v0.19.2) - 2024-03-08
10+
11+
### Other
12+
- update Cargo.toml dependencies
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_package_streaming-v0.19.0...rattler_package_streaming-v0.19.1) - 2024-03-06
1015

1116
### Fixed

β€Ž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.19.1"
3+
version = "0.19.2"
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
futures-util = { workspace = true }
1717
itertools = { workspace = true }
1818
num_cpus = { workspace = true }
19-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.0", default-features = false }
19+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
2020
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
2121
rattler_networking = { path="../rattler_networking", version = "0.19.1", default-features = false }
2222
reqwest = { workspace = true, features = ["stream"], optional = 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.2](https://github.com/mamba-org/rattler/compare/rattler_repodata_gateway-v0.19.1...rattler_repodata_gateway-v0.19.2) - 2024-03-08
10+
11+
### Fixed
12+
- chrono deprecation warnings ([#558](https://github.com/mamba-org/rattler/pull/558))
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_repodata_gateway-v0.19.0...rattler_repodata_gateway-v0.19.1) - 2024-03-06
1015

1116
### Fixed

β€Žcrates/rattler_repodata_gateway/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_repodata_gateway"
3-
version = "0.19.1"
3+
version = "0.19.2"
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.1", default-features = false, features = ["tokio", "serde"] }
35-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.0", default-features = false, optional = true }
35+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false, optional = true }
3636
fxhash = { workspace = true, optional = true }
3737
memmap2 = { workspace = true, optional = true }
3838
ouroboros = { workspace = true, optional = 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.2](https://github.com/mamba-org/rattler/compare/rattler_shell-v0.19.1...rattler_shell-v0.19.2) - 2024-03-08
10+
11+
### Fixed
12+
- better handle utf8 paths in CmdExe and Powershell ([#561](https://github.com/mamba-org/rattler/pull/561))
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_shell-v0.19.0...rattler_shell-v0.19.1) - 2024-03-06
1015

1116
### Fixed

β€Ž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.1"
3+
version = "0.19.2"
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.0", default-features = false }
17+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", 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.1](https://github.com/mamba-org/rattler/compare/rattler_solve-v0.20.0...rattler_solve-v0.20.1) - 2024-03-08
10+
11+
### Other
12+
- update Cargo.toml dependencies
13+
914
## [0.20.0](https://github.com/mamba-org/rattler/compare/rattler_solve-v0.19.0...rattler_solve-v0.20.0) - 2024-03-06
1015

1116
### Added

β€Ž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.0"
3+
version = "0.20.1"
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.0", default-features = false }
14+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
1515
rattler_digest = { path="../rattler_digest", version = "0.19.1", 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.2](https://github.com/mamba-org/rattler/compare/rattler_virtual_packages-v0.19.1...rattler_virtual_packages-v0.19.2) - 2024-03-08
10+
11+
### Other
12+
- updated the following local packages: rattler_conda_types
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_virtual_packages-v0.19.0...rattler_virtual_packages-v0.19.1) - 2024-03-06
1015

1116
### Fixed

β€Ž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.1"
3+
version = "0.19.2"
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.0", default-features = false }
18+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
1919
regex = { workspace = true }
2020
serde = { workspace = true, features = ["derive"] }
2121
thiserror = { workspace = true }

0 commit comments

Comments
Β (0)