Skip to content

Commit a0ce740

Browse files
release 0.4.1
1 parent ae55312 commit a0ce740

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10-
[Unreleased]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.4.0...HEAD
10+
[Unreleased]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.4.1...HEAD
11+
12+
## [0.4.1] - 18-06-2023
13+
14+
### Added
15+
16+
- You can now specify the list of CPUs you want to target with `--cpus` on the command line or by specifying it in your `Cargo.toml` like:
17+
18+
```toml
19+
[package.metadata.multivers.x86_64]
20+
cpus = ["generic", "alderlake", "skylake", "sandybridge", "ivybridge"]
21+
```
22+
23+
### Changed
24+
25+
- Updated dependencies to remove the duplicated ones
26+
- Removed unneeded unsafe code
1127

1228
## [0.4.0] - 20-05-2023
1329

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-multivers"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Cargo subcommand to build multiple versions of the same binary, each with a different CPU features set, merged into a single portable optimized binary"
55
edition = "2021"
66
readme = "README.md"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ it is mostly intended for the following use cases:
4040

4141
## Support
4242

43-
This project has been tested on Windows and Linux (due to the use of `memfd_create`, only Linux >= v3.17 is supported).
43+
This project is tested on Windows and Linux (due to the use of `memfd_create`, only Linux >= v3.17 is supported).
4444

4545
## Installation
4646

0 commit comments

Comments
 (0)