Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra authored Dec 16, 2024
1 parent 2f571eb commit ced9f9a
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 8 deletions.
6 changes: 3 additions & 3 deletions crates/rattler-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ clap = { workspace = true, features = ["derive"] }
console = { workspace = true, features = ["windows-console-colors"] }
indicatif = { workspace = true }
once_cell = { workspace = true }
rattler = { path="../rattler", version = "0.28.7", default-features = false, features = ["indicatif"] }
rattler = { path="../rattler", version = "0.28.8", default-features = false, features = ["indicatif"] }
rattler_conda_types = { path="../rattler_conda_types", version = "0.29.5", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.21.8", default-features = false, features = ["gcs"] }
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.27", default-features = false, features = ["gateway"] }
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.28", default-features = false, features = ["gateway"] }
rattler_solve = { path="../rattler_solve", version = "1.2.6", default-features = false, features = ["resolvo", "libsolv_c"] }
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.1.13", default-features = false }
rattler_cache = { path="../rattler_cache", version = "0.2.15", default-features = false }
rattler_cache = { path="../rattler_cache", version = "0.3.0", default-features = false }
reqwest = { workspace = true }
reqwest-middleware = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.28.8](https://github.com/conda/rattler/compare/rattler-v0.28.7...rattler-v0.28.8) - 2024-12-16

### Added

- improve performance when linking files using `rayon` (#985)

## [0.28.7](https://github.com/conda/rattler/compare/rattler-v0.28.6...rattler-v0.28.7) - 2024-12-13

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler"
version = "0.28.7"
version = "0.28.8"
edition.workspace = true
authors = ["Bas Zalmstra <[email protected]>"]
description = "Rust library to install conda environments"
Expand Down Expand Up @@ -32,7 +32,7 @@ memchr = { workspace = true }
memmap2 = { workspace = true }
once_cell = { workspace = true }
parking_lot = { workspace = true }
rattler_cache = { path = "../rattler_cache", version = "0.2.15", default-features = false }
rattler_cache = { path = "../rattler_cache", version = "0.3.0", default-features = false }
rattler_conda_types = { path = "../rattler_conda_types", version = "0.29.5", default-features = false }
rattler_digest = { path = "../rattler_digest", version = "1.0.3", default-features = false }
rattler_networking = { path = "../rattler_networking", version = "0.21.8", default-features = false }
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_cache/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/conda/rattler/compare/rattler_cache-v0.2.15...rattler_cache-v0.3.0) - 2024-12-16

### Added

- improve performance when linking files using `rayon` (#985)

## [0.2.15](https://github.com/conda/rattler/compare/rattler_cache-v0.2.14...rattler_cache-v0.2.15) - 2024-12-13

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_cache"
version = "0.2.15"
version = "0.3.0"
description = "A crate to manage the caching of data in rattler"
categories.workspace = true
homepage.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_repodata_gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.21.28](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.27...rattler_repodata_gateway-v0.21.28) - 2024-12-16

### Other

- updated the following local packages: rattler_cache

## [0.21.27](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.21.26...rattler_repodata_gateway-v0.21.27) - 2024-12-13

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/rattler_repodata_gateway/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_repodata_gateway"
version = "0.21.27"
version = "0.21.28"
edition.workspace = true
authors = ["Bas Zalmstra <[email protected]>"]
description = "A crate to interact with Conda repodata"
Expand Down Expand Up @@ -54,7 +54,7 @@ tokio-util = { workspace = true, features = ["codec", "io"] }
tracing = { workspace = true }
url = { workspace = true, features = ["serde"] }
zstd = { workspace = true }
rattler_cache = { version = "0.2.15", path = "../rattler_cache" }
rattler_cache = { version = "0.3.0", path = "../rattler_cache" }
rattler_redaction = { version = "0.1.4", path = "../rattler_redaction", features = ["reqwest", "reqwest-middleware"] }

[target.'cfg(unix)'.dependencies]
Expand Down

0 comments on commit ced9f9a

Please sign in to comment.