Skip to content

Commit

Permalink
Change default compression scheme to zstd
Browse files Browse the repository at this point in the history
  • Loading branch information
dralley committed Oct 16, 2024
1 parent d24c70d commit 88b6ee9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Changed

- Added `zstdmt` feature which sets zstd compression to use all available cores.

### Breaking Changes

- Changed default compression scheme from Gzip to Zstd.

## 0.15.1

### Changed

- The `Header::parse_header` function gained a speed up related to parsing of the binary headers.
- Added `zstdmt` feature which sets zstd compression to use all available cores.

## 0.15.0

Expand Down
2 changes: 1 addition & 1 deletion src/rpm/compressor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ impl CompressionWithLevel {

impl Default for CompressionWithLevel {
fn default() -> Self {
CompressionType::Gzip.into()
CompressionType::Zstd.into()
}
}

Expand Down

0 comments on commit 88b6ee9

Please sign in to comment.