Skip to content

Commit 76d6c5a

Browse files
authored
chore: release (#595)
1 parent b9ddf52 commit 76d6c5a

File tree

27 files changed

+130
-42
lines changed

27 files changed

+130
-42
lines changed

crates/rattler-bin/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ console = { workspace = true, features = ["windows-console-colors"] }
2828
futures = { workspace = true }
2929
indicatif = { workspace = true }
3030
once_cell = { workspace = true }
31-
rattler = { path="../rattler", version = "0.21.0", default-features = false }
32-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.5", default-features = false }
33-
rattler_networking = { path="../rattler_networking", version = "0.20.1", default-features = false }
34-
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.19.6", default-features = false, features = ["sparse"] }
35-
rattler_solve = { path="../rattler_solve", version = "0.20.5", default-features = false, features = ["resolvo", "libsolv_c"] }
36-
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "0.19.6", default-features = false }
31+
rattler = { path="../rattler", version = "0.22.0", default-features = false }
32+
rattler_conda_types = { path="../rattler_conda_types", version = "0.21.0", default-features = false }
33+
rattler_networking = { path="../rattler_networking", version = "0.20.2", default-features = false }
34+
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.19.7", default-features = false, features = ["sparse"] }
35+
rattler_solve = { path="../rattler_solve", version = "0.20.6", default-features = false, features = ["resolvo", "libsolv_c"] }
36+
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "0.19.7", 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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.22.0](https://github.com/mamba-org/rattler/compare/rattler-v0.21.0...rattler-v0.22.0) - 2024-04-19
10+
11+
### Added
12+
- make root dir configurable in channel config ([#602](https://github.com/mamba-org/rattler/pull/602))
13+
14+
### Fixed
15+
- unicode activation issues on windows ([#604](https://github.com/mamba-org/rattler/pull/604))
16+
- no shebang on windows to make spaces in prefix work ([#611](https://github.com/mamba-org/rattler/pull/611))
17+
- use correct platform to decide the windows launcher ([#608](https://github.com/mamba-org/rattler/pull/608))
18+
19+
### Other
20+
- update dependencies incl. reqwest ([#606](https://github.com/mamba-org/rattler/pull/606))
21+
922
## [0.21.0](https://github.com/baszalmstra/rattler/compare/rattler-v0.20.1...rattler-v0.21.0) - 2024-04-05
1023

1124
### Fixed

crates/rattler/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <[email protected]>"]
66
description = "Rust library to install conda environments"
@@ -31,11 +31,11 @@ itertools = { workspace = true }
3131
memchr = { workspace = true }
3232
memmap2 = { workspace = true }
3333
once_cell = { workspace = true }
34-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.5", default-features = false }
35-
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false }
36-
rattler_networking = { path="../rattler_networking", version = "0.20.1", default-features = false }
37-
rattler_shell = { path="../rattler_shell", version = "0.19.6", default-features = false }
38-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.3", default-features = false, features = ["reqwest"] }
34+
rattler_conda_types = { path="../rattler_conda_types", version = "0.21.0", default-features = false }
35+
rattler_digest = { path="../rattler_digest", version = "0.19.3", default-features = false }
36+
rattler_networking = { path="../rattler_networking", version = "0.20.2", default-features = false }
37+
rattler_shell = { path="../rattler_shell", version = "0.20.0", default-features = false }
38+
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.4", default-features = false, features = ["reqwest"] }
3939
reflink-copy = { workspace = true }
4040
regex = { workspace = true }
4141
reqwest = { workspace = true, features = ["stream", "json", "gzip"] }

crates/rattler_conda_types/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ 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_conda_types-v0.20.5...rattler_conda_types-v0.21.0) - 2024-04-19
10+
11+
### Added
12+
- make root dir configurable in channel config ([#602](https://github.com/mamba-org/rattler/pull/602))
13+
14+
### Fixed
15+
- better value for `link` field ([#610](https://github.com/mamba-org/rattler/pull/610))
16+
17+
### Other
18+
- update dependencies incl. reqwest ([#606](https://github.com/mamba-org/rattler/pull/606))
19+
920
## [0.20.5](https://github.com/baszalmstra/rattler/compare/rattler_conda_types-v0.20.4...rattler_conda_types-v0.20.5) - 2024-04-05
1021

1122
### Fixed

crates/rattler_conda_types/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_conda_types"
3-
version = "0.20.5"
3+
version = "0.21.0"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <[email protected]>"]
66
description = "Rust data types for common types used within the Conda ecosystem"
@@ -19,8 +19,8 @@ itertools = { workspace = true }
1919
lazy-regex = { workspace = true }
2020
nom = { workspace = true }
2121
purl = { workspace = true, features = ["serde"] }
22-
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false, features = ["serde"] }
23-
rattler_macros = { path="../rattler_macros", version = "0.19.2", default-features = false }
22+
rattler_digest = { path="../rattler_digest", version = "0.19.3", default-features = false, features = ["serde"] }
23+
rattler_macros = { path="../rattler_macros", version = "0.19.3", default-features = false }
2424
regex = { workspace = true }
2525
serde = { workspace = true, features = ["derive", "rc"] }
2626
serde_json = { workspace = true }

crates/rattler_digest/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
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.3](https://github.com/mamba-org/rattler/compare/rattler_digest-v0.19.2...rattler_digest-v0.19.3) - 2024-04-19
10+
11+
### Other
12+
- update Cargo.toml dependencies
13+
914
## [0.19.2](https://github.com/mamba-org/rattler/compare/rattler_digest-v0.19.1...rattler_digest-v0.19.2) - 2024-03-14
1015

1116
### Other

crates/rattler_digest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_digest"
3-
version = "0.19.2"
3+
version = "0.19.3"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <[email protected]>"]
66
description = "An simple crate used by rattler crates to compute different hashes from different sources"

crates/rattler_index/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
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.7](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.6...rattler_index-v0.19.7) - 2024-04-19
10+
11+
### Other
12+
- update Cargo.toml dependencies
13+
914
## [0.19.6](https://github.com/baszalmstra/rattler/compare/rattler_index-v0.19.5...rattler_index-v0.19.6) - 2024-04-05
1015

1116
### Other

crates/rattler_index/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_index"
3-
version = "0.19.6"
3+
version = "0.19.7"
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.5", default-features = false }
16-
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false }
17-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.3", default-features = false }
15+
rattler_conda_types = { path="../rattler_conda_types", version = "0.21.0", default-features = false }
16+
rattler_digest = { path="../rattler_digest", version = "0.19.3", default-features = false }
17+
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.4", default-features = false }
1818
serde_json = { workspace = true }
1919
tracing = { workspace = true }
2020
walkdir = { workspace = true }

crates/rattler_libsolv_c/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
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.3](https://github.com/mamba-org/rattler/compare/rattler_libsolv_c-v0.19.2...rattler_libsolv_c-v0.19.3) - 2024-04-19
10+
11+
### Other
12+
- update Cargo.toml dependencies
13+
914
## [0.19.2](https://github.com/mamba-org/rattler/compare/rattler_libsolv_c-v0.19.1...rattler_libsolv_c-v0.19.2) - 2024-03-14
1015

1116
### Other

0 commit comments

Comments
 (0)