Skip to content

Commit bab086b

Browse files
authored
Merge pull request #18 from HadrienG2/maintenance-release
Small maintenance release to fix clippy lints and extend cargo metadata
2 parents 36c1da4 + 8f5b9ca commit bab086b

File tree

4 files changed

+216
-6
lines changed

4 files changed

+216
-6
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
/target
2-
/Cargo.lock

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
_There are no unreleased changes in the pipeline at the moment._
1212

1313

14+
## [2.0.1] - 2025-05-04
15+
16+
### Fixed
17+
18+
- Cleaned up and extended Cargo metadata
19+
- Adressed various Clippy lints
20+
21+
1422
## [2.0.0] - 2024-06-14
1523

1624
### Added
@@ -36,7 +44,8 @@ _There are no unreleased changes in the pipeline at the moment._
3644
- First tagged release of pessimize.
3745

3846

39-
[Unreleased]: https://github.com/HadrienG2/pessimize/compare/v2.0.0...HEAD
47+
[Unreleased]: https://github.com/HadrienG2/pessimize/compare/v2.0.1...HEAD
48+
[2.0.1]: https://github.com/HadrienG2/pessimize/compare/v2.0.0...v2.0.1
4049
[2.0.0]: https://github.com/HadrienG2/pessimize/compare/v1.0.1...v2.0.0
4150
[1.0.1]: https://github.com/HadrienG2/pessimize/compare/v1.0.0...v1.0.1
4251
[1.0.0]: https://github.com/HadrienG2/pessimize/releases/tag/v1.0.0

Cargo.lock

Lines changed: 198 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,18 @@ name = "pessimize"
1111
# - Roll an annotated git tag
1212
# - Add a github release
1313
#
14-
version = "2.0.0"
14+
version = "2.0.1"
1515
authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
16+
edition = "2021"
17+
rust-version = "1.79.0"
1618
description = "More efficient Rust compiler optimization barriers"
19+
repository = "https://github.com/HadrienG2/pessimize/"
20+
license = "MPL-2.0"
1721
keywords = [ "optimization", "barrier", "black-box", "efficient", "benchmarking" ]
1822
categories = [ "development-tools", "hardware-support", "no-std", "rust-patterns" ]
19-
license = "MPL-2.0"
20-
edition = "2021"
21-
rust-version = "1.79.0"
23+
24+
[badges]
25+
maintenance = { status = "passively-maintained" }
2226

2327
[features]
2428
default = ["std"]

0 commit comments

Comments
 (0)