Skip to content

Commit 5d00b8a

Browse files
committed
version bump
1 parent 812af8a commit 5d00b8a

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.9] - 2024-12-02
11+
12+
### Added
13+
14+
- `InPlaceWrite` trait to re-initialize already existing allocations,
15+
- `assert_pinned!` macro to check if a field is marked with `#[pin]`,
16+
- compatibility with stable Rust, thanks a lot to @bonzini! #24 and #23:
17+
- the `alloc` feature enables support for `allocator_api` and reflects the old behavior, if it is
18+
disabled, then infallible allocations are assumed (just like the standard library does).
19+
20+
### Fixed
21+
22+
- guard hygiene wrt constants in `[try_][pin_]init!`
23+
1024
## [0.0.8] - 2024-07-07
1125

1226
### Changed
@@ -51,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5165

5266
## [0.0.6] - 2023-04-08
5367

54-
[unreleased]: https://github.com/Rust-for-Linux/pinned-init/compare/v0.0.7...HEAD
68+
[unreleased]: https://github.com/Rust-for-Linux/pinned-init/compare/v0.0.9...HEAD
69+
[0.0.8]: https://github.com/Rust-for-Linux/pinned-init/compare/v0.0.8...v0.0.9
5570
[0.0.8]: https://github.com/Rust-for-Linux/pinned-init/compare/v0.0.7...v0.0.8
5671
[0.0.7]: https://github.com/Rust-for-Linux/pinned-init/compare/v0.0.6...v0.0.7
5772
[0.0.6]: https://github.com/Rust-for-Linux/pinned-init/releases/tag/v0.0.6

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pinned-init"
3-
version = "0.0.8"
3+
version = "0.0.9"
44
edition = "2021"
55

66
authors = ["y86-dev"]

0 commit comments

Comments
 (0)