Skip to content

Commit 55cd763

Browse files
authored
Merge pull request #26 from rust-osdev/release
Prepare for v0.3.0 release
2 parents d7bcef0 + 840740f commit 55cd763

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ lock_api = "0.4.7"
2222
rand = "0.8"
2323

2424
[package.metadata.release]
25-
dev-version = false
2625
pre-release-replacements = [
2726
{ file = "Changelog.md", search = "# Unreleased", replace = "# Unreleased\n\n# {{version}} – {{date}}", exactly = 1 },
2827
]

Changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Unreleased
22

3+
## Breaking
4+
5+
* [feat: add backoff feature](https://github.com/rust-osdev/spinning_top/pull/16)
6+
* [chore: remove `const_spinlock` function](https://github.com/rust-osdev/spinning_top/pull/20)
7+
* [chore: remove deprecated `nightly` feature](https://github.com/rust-osdev/spinning_top/pull/21)
8+
9+
## Improvements
10+
11+
* [feat: add `RwSpinlock` readers-writer lock](https://github.com/rust-osdev/spinning_top/pull/18)
12+
* [feat: add `arc_lock` feature and typedefs](https://github.com/rust-osdev/spinning_top/pull/25)
13+
* [perf: inline everything](https://github.com/rust-osdev/spinning_top/pull/17)
14+
* [docs: fix typo](https://github.com/rust-osdev/spinning_top/pull/23)
15+
16+
## Other
17+
18+
* [ci: build with all features](https://github.com/rust-osdev/spinning_top/pull/19)
19+
* [test: don't ignore statics example](https://github.com/rust-osdev/spinning_top/pull/22)
20+
321
# 0.2.5 – 2023-02-24
422

523
- Upgrade `lock_api` to 0.4.7. This makes `Spinlock::new` a `const` function without needing nightly rust.

0 commit comments

Comments
 (0)