Skip to content

Commit 1c1dd43

Browse files
committed
Preparing 0.7.7 release
1 parent 23627b9 commit 1c1dd43

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.7.7] - 2021-09-22
11+
12+
### Fixed
13+
14+
- Fixed so `Pool` is `Sync` on ARMv6
15+
1016
## [v0.7.6] - 2021-09-21
1117

1218
### Added
@@ -411,8 +417,9 @@ architecture.
411417

412418
- Initial release
413419

414-
[Unreleased]: https://github.com/japaric/heapless/compare/v0.7.6...HEAD
415-
[v0.7.5]: https://github.com/japaric/heapless/compare/v0.7.5...v0.7.6
420+
[Unreleased]: https://github.com/japaric/heapless/compare/v0.7.7...HEAD
421+
[v0.7.7]: https://github.com/japaric/heapless/compare/v0.7.6...v0.7.7
422+
[v0.7.6]: https://github.com/japaric/heapless/compare/v0.7.5...v0.7.6
416423
[v0.7.5]: https://github.com/japaric/heapless/compare/v0.7.4...v0.7.5
417424
[v0.7.4]: https://github.com/japaric/heapless/compare/v0.7.3...v0.7.4
418425
[v0.7.3]: https://github.com/japaric/heapless/compare/v0.7.2...v0.7.3

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["static", "no-heap"]
1212
license = "MIT OR Apache-2.0"
1313
name = "heapless"
1414
repository = "https://github.com/japaric/heapless"
15-
version = "0.7.6"
15+
version = "0.7.7"
1616

1717
[features]
1818
default = ["cas"]

src/pool/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! NOTE: This module is not available on targets that do *not* support CAS operations, e.g. ARMv6-M
44
//!
5-
//! (\*) Currently, the implementation is only lock-free *and* `Sync` on ARMv7-{A,R,M} & ARMv8-M
5+
//! (\*) Currently, the implementation is only lock-free *and* `Sync` on ARMv6, ARMv7-{A,R,M} & ARMv8-M
66
//! devices
77
//!
88
//! # Examples
@@ -263,6 +263,7 @@ pub struct Pool<T> {
263263

264264
// NOTE(any(test)) makes testing easier (no need to enable Cargo features for testing)
265265
#[cfg(any(
266+
armv6m,
266267
armv7a,
267268
armv7r,
268269
armv7m,

0 commit comments

Comments
 (0)