Skip to content

Commit 1e99d7a

Browse files
authored
chore: release (#807)
1 parent 1133449 commit 1e99d7a

File tree

33 files changed

+221
-58
lines changed

33 files changed

+221
-58
lines changed

crates/file_url/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.1.4](https://github.com/conda/rattler/compare/file_url-v0.1.3...file_url-v0.1.4) - 2024-08-15
10+
11+
### Fixed
12+
- use conda-incubator
13+
14+
### Other
15+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
16+
917
## [0.1.3](https://github.com/conda/rattler/compare/file_url-v0.1.2...file_url-v0.1.3) - 2024-07-15
1018

1119
### 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.3"
3+
version = "0.1.4"
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.27.4", default-features = false, features = ["indicatif"] }
31-
rattler_conda_types = { path="../rattler_conda_types", version = "0.27.1", default-features = false }
32-
rattler_networking = { path="../rattler_networking", version = "0.21.0", default-features = false }
33-
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.5", default-features = false, features = ["gateway"] }
34-
rattler_solve = { path="../rattler_solve", version = "1.0.2", default-features = false, features = ["resolvo", "libsolv_c"] }
35-
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.0.2", default-features = false }
36-
rattler_cache = { path="../rattler_cache", version = "0.1.6", default-features = false }
30+
rattler = { path="../rattler", version = "0.27.5", default-features = false, features = ["indicatif"] }
31+
rattler_conda_types = { path="../rattler_conda_types", version = "0.27.2", default-features = false }
32+
rattler_networking = { path="../rattler_networking", version = "0.21.1", default-features = false }
33+
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.6", default-features = false, features = ["gateway"] }
34+
rattler_solve = { path="../rattler_solve", version = "1.0.3", default-features = false, features = ["resolvo", "libsolv_c"] }
35+
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.0.3", default-features = false }
36+
rattler_cache = { path="../rattler_cache", version = "0.1.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

+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.27.5](https://github.com/conda/rattler/compare/rattler-v0.27.4...rattler-v0.27.5) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
14+
### Other
15+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
16+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
17+
- add banner to docs
18+
919
## [0.27.4](https://github.com/baszalmstra/rattler/compare/rattler-v0.27.3...rattler-v0.27.4) - 2024-08-06
1020

1121
### Other

crates/rattler/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler"
3-
version = "0.27.4"
3+
version = "0.27.5"
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.1.6", default-features = false }
36-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.1", default-features = false }
37-
rattler_digest = { path = "../rattler_digest", version = "1.0.0", default-features = false }
38-
rattler_networking = { path = "../rattler_networking", version = "0.21.0", default-features = false }
39-
rattler_shell = { path = "../rattler_shell", version = "0.21.5", default-features = false }
40-
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.1", default-features = false, features = ["reqwest"] }
35+
rattler_cache = { path = "../rattler_cache", version = "0.1.7", default-features = false }
36+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.2", default-features = false }
37+
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false }
38+
rattler_networking = { path = "../rattler_networking", version = "0.21.1", default-features = false }
39+
rattler_shell = { path = "../rattler_shell", version = "0.21.6", default-features = false }
40+
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.22.2", 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

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

77
## [Unreleased]
88

9+
## [0.1.7](https://github.com/conda/rattler/compare/rattler_cache-v0.1.6...rattler_cache-v0.1.7) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
14+
### Other
15+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
16+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
17+
918
## [0.1.6](https://github.com/baszalmstra/rattler/compare/rattler_cache-v0.1.5...rattler_cache-v0.1.6) - 2024-08-06
1019

1120
### Other

crates/rattler_cache/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_cache"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
description = "A crate to manage the caching of data in rattler"
55
categories.workspace = true
66
homepage.workspace = true
@@ -15,10 +15,10 @@ dirs.workspace = true
1515
fxhash.workspace = true
1616
itertools.workspace = true
1717
parking_lot.workspace = true
18-
rattler_conda_types = { version = "0.27.1", path = "../rattler_conda_types", default-features = false }
19-
rattler_digest = { version = "1.0.0", path = "../rattler_digest", default-features = false }
20-
rattler_networking = { version = "0.21.0", path = "../rattler_networking", default-features = false }
21-
rattler_package_streaming = { version = "0.22.1", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
18+
rattler_conda_types = { version = "0.27.2", path = "../rattler_conda_types", default-features = false }
19+
rattler_digest = { version = "1.0.1", path = "../rattler_digest", default-features = false }
20+
rattler_networking = { version = "0.21.1", path = "../rattler_networking", default-features = false }
21+
rattler_package_streaming = { version = "0.22.2", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
2222
reqwest.workspace = true
2323
tokio.workspace = true
2424
tracing.workspace = true

crates/rattler_conda_types/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.27.2](https://github.com/conda/rattler/compare/rattler_conda_types-v0.27.1...rattler_conda_types-v0.27.2) - 2024-08-15
10+
11+
### Added
12+
- add extra field ([#811](https://github.com/conda/rattler/pull/811))
13+
- parse `channel` key and consolidate `NamelessMatchSpec` ([#810](https://github.com/conda/rattler/pull/810))
14+
15+
### Fixed
16+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
17+
- use conda-incubator
18+
19+
### Other
20+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
21+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
22+
923
## [0.27.1](https://github.com/baszalmstra/rattler/compare/rattler_conda_types-v0.27.0...rattler_conda_types-v0.27.1) - 2024-08-06
1024

1125
### Fixed

crates/rattler_conda_types/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_conda_types"
3-
version = "0.27.1"
3+
version = "0.27.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"
@@ -12,16 +12,16 @@ readme.workspace = true
1212

1313
[dependencies]
1414
chrono = { workspace = true }
15-
file_url = { path = "../file_url", version = "0.1.3" }
15+
file_url = { path = "../file_url", version = "0.1.4" }
1616
fxhash = { workspace = true }
1717
glob = { workspace = true }
1818
hex = { workspace = true }
1919
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 = "1.0.0", default-features = false, features = ["serde"] }
24-
rattler_macros = { path = "../rattler_macros", version = "1.0.0", default-features = false }
23+
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false, features = ["serde"] }
24+
rattler_macros = { path = "../rattler_macros", version = "1.0.1", default-features = false }
2525
regex = { workspace = true }
2626
simd-json = { workspace = true , features = ["serde_impl"]}
2727
serde = { workspace = true, features = ["derive", "rc"] }
@@ -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.0", path = "../rattler_redaction" }
40+
rattler_redaction = { version = "0.1.1", path = "../rattler_redaction" }
4141
dirs = { workspace = true }
4242

4343
[dev-dependencies]

crates/rattler_digest/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+
## [1.0.1](https://github.com/conda/rattler/compare/rattler_digest-v1.0.0...rattler_digest-v1.0.1) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
- use conda-incubator
14+
15+
### Other
16+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
17+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
18+
919
## [0.19.5](https://github.com/conda/rattler/compare/rattler_digest-v0.19.4...rattler_digest-v0.19.5) - 2024-07-15
1020

1121
### 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 = "1.0.0"
3+
version = "1.0.1"
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

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

77
## [Unreleased]
88

9+
## [0.19.24](https://github.com/conda/rattler/compare/rattler_index-v0.19.23...rattler_index-v0.19.24) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
14+
### Other
15+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
16+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
17+
918
## [0.19.23](https://github.com/baszalmstra/rattler/compare/rattler_index-v0.19.22...rattler_index-v0.19.23) - 2024-08-06
1019

1120
### 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.23"
3+
version = "0.19.24"
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.27.1", default-features = false }
16-
rattler_digest = { path="../rattler_digest", version = "1.0.0", default-features = false }
17-
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.22.1", default-features = false }
15+
rattler_conda_types = { path="../rattler_conda_types", version = "0.27.2", default-features = false }
16+
rattler_digest = { path="../rattler_digest", version = "1.0.1", default-features = false }
17+
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.22.2", default-features = false }
1818
serde_json = { workspace = true }
1919
tracing = { workspace = true }
2020
walkdir = { workspace = true }

crates/rattler_libsolv_c/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+
## [1.0.1](https://github.com/conda/rattler/compare/rattler_libsolv_c-v1.0.0...rattler_libsolv_c-v1.0.1) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
- use conda-incubator
14+
15+
### Other
16+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
17+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
18+
919
## [0.19.5](https://github.com/conda/rattler/compare/rattler_libsolv_c-v0.19.4...rattler_libsolv_c-v0.19.5) - 2024-07-15
1020

1121
### 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 = "1.0.0"
3+
version = "1.0.1"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Bindings for libsolv"

crates/rattler_lock/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.22.19](https://github.com/conda/rattler/compare/rattler_lock-v0.22.18...rattler_lock-v0.22.19) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
14+
### Other
15+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
16+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
17+
918
## [0.22.18](https://github.com/baszalmstra/rattler/compare/rattler_lock-v0.22.17...rattler_lock-v0.22.18) - 2024-08-06
1019

1120
### Other

crates/rattler_lock/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_lock"
3-
version = "0.22.18"
3+
version = "0.22.19"
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.27.1", default-features = false }
19-
rattler_digest = { path = "../rattler_digest", version = "1.0.0", default-features = false }
20-
file_url = { path = "../file_url", version = "0.1.3" }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.2", default-features = false }
19+
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false }
20+
file_url = { path = "../file_url", version = "0.1.4" }
2121
pep508_rs = { workspace = true, features = ["serde"] }
2222
pep440_rs = { workspace = true, features = ["serde"] }
2323
serde = { workspace = true, features = ["derive"] }

crates/rattler_macros/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+
## [1.0.1](https://github.com/conda/rattler/compare/rattler_macros-v1.0.0...rattler_macros-v1.0.1) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
- use conda-incubator
14+
15+
### Other
16+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
17+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
18+
919
## [0.19.4](https://github.com/conda/rattler/compare/rattler_macros-v0.19.3...rattler_macros-v0.19.4) - 2024-07-08
1020

1121
### 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 = "1.0.0"
3+
version = "1.0.1"
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

+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.21.1](https://github.com/conda/rattler/compare/rattler_networking-v0.21.0...rattler_networking-v0.21.1) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
- use conda-incubator
14+
15+
### Other
16+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
17+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
18+
919
## [0.21.0](https://github.com/baszalmstra/rattler/compare/rattler_networking-v0.20.10...rattler_networking-v0.21.0) - 2024-08-02
1020

1121
### 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.21.0"
3+
version = "0.21.1"
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

+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.22.2](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.22.1...rattler_package_streaming-v0.22.2) - 2024-08-15
10+
11+
### Fixed
12+
- move more links to the conda org from conda-incubator ([#816](https://github.com/conda/rattler/pull/816))
13+
- use conda-incubator
14+
15+
### Other
16+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
17+
- update banner ([#808](https://github.com/conda/rattler/pull/808))
18+
919
## [0.22.1](https://github.com/baszalmstra/rattler/compare/rattler_package_streaming-v0.22.0...rattler_package_streaming-v0.22.1) - 2024-08-06
1020

1121
### Other

crates/rattler_package_streaming/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rattler_package_streaming"
3-
version = "0.22.1"
3+
version = "0.22.2"
44
edition.workspace = true
55
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
66
description = "Extract and stream of Conda package archives"
@@ -15,10 +15,10 @@ bzip2 = { workspace = true }
1515
chrono = { workspace = true }
1616
futures-util = { workspace = true }
1717
num_cpus = { workspace = true }
18-
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.1", default-features = false }
19-
rattler_digest = { path = "../rattler_digest", version = "1.0.0", default-features = false }
20-
rattler_networking = { path = "../rattler_networking", version = "0.21.0", default-features = false }
21-
rattler_redaction = { version = "0.1.0", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
18+
rattler_conda_types = { path = "../rattler_conda_types", version = "0.27.2", default-features = false }
19+
rattler_digest = { path = "../rattler_digest", version = "1.0.1", default-features = false }
20+
rattler_networking = { path = "../rattler_networking", version = "0.21.1", default-features = false }
21+
rattler_redaction = { version = "0.1.1", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }
2222
reqwest = { workspace = true, features = ["stream"], optional = true }
2323
reqwest-middleware = { workspace = true, optional = true }
2424
serde_json = { workspace = true }

0 commit comments

Comments
 (0)