Skip to content

Commit 5b60a51

Browse files
authored
chore: release (#564)
Co-authored-by: Bas <4995967+baszalmstra@users.noreply.github.com>
1 parent e3784e0 commit 5b60a51

File tree

27 files changed

+115
-41
lines changed

27 files changed

+115
-41
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.2", default-features = false }
34-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
35-
rattler_networking = { path="../rattler_networking", 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 }
33+
rattler = { path="../rattler", version = "0.19.3", 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 }
3939
reqwest = { workspace = true }
4040
reqwest-middleware = { workspace = true }
4141
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.19.3](https://github.com/mamba-org/rattler/compare/rattler-v0.19.2...rattler-v0.19.3) - 2024-03-14
10+
11+
### Added
12+
- add mirror handling and OCI mirror type ([#553](https://github.com/mamba-org/rattler/pull/553))
13+
14+
### Other
15+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
16+
917
## [0.19.2](https://github.com/mamba-org/rattler/compare/rattler-v0.19.1...rattler-v0.19.2) - 2024-03-08
1018

1119
### Other

crates/rattler/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler"
3-
version = "0.19.2"
3+
version = "0.19.3"
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.1", default-features = false }
40-
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
41-
rattler_networking = { path="../rattler_networking", version = "0.19.1", default-features = false }
42-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.19.2", default-features = false, features = ["reqwest"] }
39+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
40+
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"] }
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.2](https://github.com/mamba-org/rattler/compare/rattler_conda_types-v0.20.1...rattler_conda_types-v0.20.2) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [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
1015

1116
### Fixed

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.20.1"
3+
version = "0.20.2"
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"
@@ -20,8 +20,8 @@ itertools = { workspace = true }
2020
lazy-regex = { workspace = true }
2121
nom = { workspace = true }
2222
purl = { workspace = true, features = ["serde"] }
23-
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false, features = ["serde"] }
24-
rattler_macros = { path="../rattler_macros", version = "0.19.1", default-features = false }
23+
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false, features = ["serde"] }
24+
rattler_macros = { path="../rattler_macros", version = "0.19.2", default-features = false }
2525
regex = { workspace = true }
2626
serde = { workspace = true, features = ["derive", "rc"] }
2727
serde_json = { workspace = true }

crates/rattler_digest/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_digest-v0.19.1...rattler_digest-v0.19.2) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_digest-v0.19.0...rattler_digest-v0.19.1) - 2024-03-06
1015

1116
### Other

crates/rattler_digest/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_digest"
3-
version = "0.19.1"
3+
version = "0.19.2"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "An simple crate used by rattler crates to compute different hashes from different sources"

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.3](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.2...rattler_index-v0.19.3) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [0.19.2](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.1...rattler_index-v0.19.2) - 2024-03-08
1015

1116
### Other

crates/rattler_index/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_index"
3-
version = "0.19.2"
3+
version = "0.19.3"
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.1", default-features = false }
16-
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
17-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.19.2", default-features = false }
15+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", 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.0", default-features = false }
1818
serde_json = { workspace = true }
1919
tracing = { workspace = true }
2020
walkdir = { workspace = true }

crates/rattler_libsolv_c/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_libsolv_c-v0.19.1...rattler_libsolv_c-v0.19.2) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_libsolv_c-v0.19.0...rattler_libsolv_c-v0.19.1) - 2024-03-06
1015

1116
### Other

crates/rattler_libsolv_c/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_libsolv_c"
3-
version = "0.19.1"
3+
version = "0.19.2"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Bindings for libsolv"

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.2](https://github.com/mamba-org/rattler/compare/rattler_lock-v0.20.1...rattler_lock-v0.20.2) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [0.20.1](https://github.com/mamba-org/rattler/compare/rattler_lock-v0.20.0...rattler_lock-v0.20.1) - 2024-03-08
1015

1116
### Fixed

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.20.1"
3+
version = "0.20.2"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Rust data types for conda lock"
@@ -15,8 +15,8 @@ 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.1", default-features = false }
19-
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
18+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
19+
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"] }
2222
serde = { workspace = true, features = ["derive"] }

crates/rattler_macros/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_macros-v0.19.1...rattler_macros-v0.19.2) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_macros-v0.19.0...rattler_macros-v0.19.1) - 2024-03-06
1015

1116
### Other

crates/rattler_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_macros"
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 that provideds some procedural macros for the rattler project"

crates/rattler_networking/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.19.2](https://github.com/mamba-org/rattler/compare/rattler_networking-v0.19.1...rattler_networking-v0.19.2) - 2024-03-14
10+
11+
### Added
12+
- add mirror handling and OCI mirror type ([#553](https://github.com/mamba-org/rattler/pull/553))
13+
14+
### Other
15+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
16+
917
## [0.19.1](https://github.com/mamba-org/rattler/compare/rattler_networking-v0.19.0...rattler_networking-v0.19.1) - 2024-03-06
1018

1119
### Fixed

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.1"
3+
version = "0.19.2"
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

+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.20.0](https://github.com/mamba-org/rattler/compare/rattler_package_streaming-v0.19.2...rattler_package_streaming-v0.20.0) - 2024-03-14
10+
11+
### Added
12+
- add mirror handling and OCI mirror type ([#553](https://github.com/mamba-org/rattler/pull/553))
13+
14+
### Other
15+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
16+
917
## [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
1018

1119
### 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.19.2"
3+
version = "0.20.0"
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.1", default-features = false }
20-
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
21-
rattler_networking = { path="../rattler_networking", version = "0.19.1", default-features = false }
19+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
20+
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 }
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.3](https://github.com/mamba-org/rattler/compare/rattler_repodata_gateway-v0.19.2...rattler_repodata_gateway-v0.19.3) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [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
1015

1116
### Fixed

crates/rattler_repodata_gateway/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_repodata_gateway"
3-
version = "0.19.2"
3+
version = "0.19.3"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "A crate to interact with Conda repodata"
@@ -31,8 +31,8 @@ serde = { workspace = true, features = ["derive"] }
3131
serde_json = { workspace = true }
3232
pin-project-lite = { workspace = true }
3333
md-5 = { workspace = true }
34-
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.1", default-features = false, optional = true }
34+
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 }
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.1", default-features = false }
44+
rattler_networking = { path="../rattler_networking", version = "0.19.2", 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.3](https://github.com/mamba-org/rattler/compare/rattler_shell-v0.19.2...rattler_shell-v0.19.3) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [0.19.2](https://github.com/mamba-org/rattler/compare/rattler_shell-v0.19.1...rattler_shell-v0.19.2) - 2024-03-08
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.2"
3+
version = "0.19.3"
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.1", default-features = false }
17+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", 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.2](https://github.com/mamba-org/rattler/compare/rattler_solve-v0.20.1...rattler_solve-v0.20.2) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [0.20.1](https://github.com/mamba-org/rattler/compare/rattler_solve-v0.20.0...rattler_solve-v0.20.1) - 2024-03-08
1015

1116
### Other

crates/rattler_solve/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_solve"
3-
version = "0.20.1"
3+
version = "0.20.2"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "A crate to solve conda environments"
@@ -11,8 +11,8 @@ license.workspace = true
1111
readme.workspace = true
1212

1313
[dependencies]
14-
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.1", default-features = false }
15-
rattler_digest = { path="../rattler_digest", version = "0.19.1", default-features = false }
14+
rattler_conda_types = { path="../rattler_conda_types", version = "0.20.2", default-features = false }
15+
rattler_digest = { path="../rattler_digest", version = "0.19.2", default-features = false }
1616
libc = { workspace = true, optional = true }
1717
anyhow = { workspace = true }
1818
chrono = { workspace = true }
@@ -23,7 +23,7 @@ serde = { workspace = true, features = ["derive"] }
2323
url = { workspace = true }
2424
hex = { workspace = true }
2525
tempfile = { workspace = true }
26-
rattler_libsolv_c = { path="../rattler_libsolv_c", version = "0.19.1", default-features = false, optional = true }
26+
rattler_libsolv_c = { path="../rattler_libsolv_c", version = "0.19.2", default-features = false, optional = true }
2727
resolvo = { workspace = true, optional = true }
2828
futures = { workspace = true, optional = true }
2929

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.3](https://github.com/mamba-org/rattler/compare/rattler_virtual_packages-v0.19.2...rattler_virtual_packages-v0.19.3) - 2024-03-14
10+
11+
### Other
12+
- add pixi badge ([#563](https://github.com/mamba-org/rattler/pull/563))
13+
914
## [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
1015

1116
### Other

0 commit comments

Comments
 (0)