Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: Bas <[email protected]>
  • Loading branch information
baszalmstra committed Apr 30, 2024
1 parent a00e428 commit d99e087
Show file tree
Hide file tree
Showing 13 changed files with 44 additions and 14 deletions.
6 changes: 3 additions & 3 deletions crates/rattler-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ console = { workspace = true, features = ["windows-console-colors"] }
futures = { workspace = true }
indicatif = { workspace = true }
once_cell = { workspace = true }
rattler = { path="../rattler", version = "0.23.1", default-features = false }
rattler = { path="../rattler", version = "0.23.2", default-features = false }
rattler_conda_types = { path="../rattler_conda_types", version = "0.22.0", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.20.3", default-features = false }
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.19.9", default-features = false, features = ["sparse"] }
rattler_networking = { path="../rattler_networking", version = "0.20.4", default-features = false }
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.19.10", default-features = false, features = ["sparse"] }
rattler_solve = { path="../rattler_solve", version = "0.21.0", default-features = false, features = ["resolvo", "libsolv_c"] }
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "0.19.8", default-features = false }
reqwest = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions crates/rattler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.23.2](https://github.com/mamba-org/rattler/compare/rattler-v0.23.1...rattler-v0.23.2) - 2024-04-30

### Other
- updated the following local packages: rattler_networking

## [0.23.1](https://github.com/mamba-org/rattler/compare/rattler-v0.23.0...rattler-v0.23.1) - 2024-04-25

### Other
Expand Down
6 changes: 3 additions & 3 deletions crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler"
version = "0.23.1"
version = "0.23.2"
edition.workspace = true
authors = ["Bas Zalmstra <[email protected]>"]
description = "Rust library to install conda environments"
Expand Down Expand Up @@ -33,9 +33,9 @@ memmap2 = { workspace = true }
once_cell = { workspace = true }
rattler_conda_types = { path="../rattler_conda_types", version = "0.22.0", default-features = false }
rattler_digest = { path="../rattler_digest", version = "0.19.3", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.20.3", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.20.4", default-features = false }
rattler_shell = { path="../rattler_shell", version = "0.20.1", default-features = false }
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.6", default-features = false, features = ["reqwest"] }
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.7", default-features = false, features = ["reqwest"] }
reflink-copy = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true, features = ["stream", "json", "gzip"] }
Expand Down
5 changes: 5 additions & 0 deletions crates/rattler_index/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.19.9](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.8...rattler_index-v0.19.9) - 2024-04-30

### Other
- release ([#625](https://github.com/mamba-org/rattler/pull/625))

## [0.19.8](https://github.com/mamba-org/rattler/compare/rattler_index-v0.19.7...rattler_index-v0.19.8) - 2024-04-25

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/rattler_index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_index"
version = "0.19.8"
version = "0.19.9"
edition.workspace = true
authors = []
description = "A crate that indexes directories containing conda packages to create local conda channels"
Expand All @@ -14,7 +14,7 @@ readme.workspace = true
fs-err = { workspace = true }
rattler_conda_types = { path="../rattler_conda_types", version = "0.22.0", default-features = false }
rattler_digest = { path="../rattler_digest", version = "0.19.3", default-features = false }
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.6", default-features = false }
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.20.7", default-features = false }
serde_json = { workspace = true }
tracing = { workspace = true }
walkdir = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions crates/rattler_lock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.22.4](https://github.com/mamba-org/rattler/compare/rattler_lock-v0.22.3...rattler_lock-v0.22.4) - 2024-04-30

### Added
- adds pypi indexes to the lock-file ([#626](https://github.com/mamba-org/rattler/pull/626))

## [0.22.3](https://github.com/mamba-org/rattler/compare/rattler_lock-v0.22.2...rattler_lock-v0.22.3) - 2024-04-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_lock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_lock"
version = "0.22.3"
version = "0.22.4"
edition.workspace = true
authors = ["Bas Zalmstra <[email protected]>"]
description = "Rust data types for conda lock"
Expand Down
5 changes: 5 additions & 0 deletions crates/rattler_networking/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.20.4](https://github.com/mamba-org/rattler/compare/rattler_networking-v0.20.3...rattler_networking-v0.20.4) - 2024-04-30

### Other
- bump py-rattler 0.5.0 ([#629](https://github.com/mamba-org/rattler/pull/629))

## [0.20.3](https://github.com/mamba-org/rattler/compare/rattler_networking-v0.20.2...rattler_networking-v0.20.3) - 2024-04-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_networking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_networking"
version = "0.20.3"
version = "0.20.4"
edition.workspace = true
authors = ["Wolf Vollprecht <[email protected]>"]
description = "Authenticated requests in the conda ecosystem"
Expand Down
5 changes: 5 additions & 0 deletions crates/rattler_package_streaming/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.20.7](https://github.com/mamba-org/rattler/compare/rattler_package_streaming-v0.20.6...rattler_package_streaming-v0.20.7) - 2024-04-30

### Other
- updated the following local packages: rattler_networking

## [0.20.6](https://github.com/mamba-org/rattler/compare/rattler_package_streaming-v0.20.5...rattler_package_streaming-v0.20.6) - 2024-04-25

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/rattler_package_streaming/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_package_streaming"
version = "0.20.6"
version = "0.20.7"
edition.workspace = true
authors = ["Bas Zalmstra <[email protected]>"]
description = "Extract and stream of Conda package archives"
Expand All @@ -17,7 +17,7 @@ futures-util = { workspace = true }
num_cpus = { workspace = true }
rattler_conda_types = { path="../rattler_conda_types", version = "0.22.0", default-features = false }
rattler_digest = { path="../rattler_digest", version = "0.19.3", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.20.3", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.20.4", default-features = false }
reqwest = { workspace = true, features = ["stream"], optional = true }
reqwest-middleware = { workspace = true, optional = true }
serde_json = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions crates/rattler_repodata_gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.19.10](https://github.com/mamba-org/rattler/compare/rattler_repodata_gateway-v0.19.9...rattler_repodata_gateway-v0.19.10) - 2024-04-30

### Added
- create SparseRepoData from byte slices ([#624](https://github.com/mamba-org/rattler/pull/624))

## [0.19.9](https://github.com/mamba-org/rattler/compare/rattler_repodata_gateway-v0.19.8...rattler_repodata_gateway-v0.19.9) - 2024-04-25

### 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.19.9"
version = "0.19.10"
edition.workspace = true
authors = ["Bas Zalmstra <[email protected]>"]
description = "A crate to interact with Conda repodata"
Expand Down Expand Up @@ -40,7 +40,7 @@ superslice = { workspace = true, optional = true }
itertools = { workspace = true, optional = true }
json-patch = { workspace = true }
hex = { workspace = true, features = ["serde"] }
rattler_networking = { path="../rattler_networking", version = "0.20.3", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.20.4", default-features = false }

[target.'cfg(unix)'.dependencies]
libc = { workspace = true }
Expand Down

0 comments on commit d99e087

Please sign in to comment.