rtic-sync: add links to CHANGELOG.md

This commit is contained in:
datdenkikniet 2025-09-17 21:20:22 +02:00
parent 53e78d520e
commit d8c95bc61b

View file

@ -11,7 +11,7 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
- Un-hide lifetimes of output type in `Signal::split` to resolve a new warning.
## v1.4.0 - 2025-06-22
## [v](https://github.com/rtic-rs/rtic/commit/fe77b4538d6cd506d1a18bdc9e17216dc61881db)1.4.0 - 2025-06-22
### Added
@ -30,14 +30,14 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
- Don't force `Signal` import when using `make_signal` macro
- Update `make_signal`'s documentation to match `make_channel`'s
## v1.3.2 - 2025-03-16
## [v1.3.2](https://github.com/rtic-rs/rtic/commit/daff0c2913ba5c8c3975313314e531e00a620732) - 2025-03-16
### Fixed
- Improve handling of free slots for `send` by explicitly writing the free slot to the awoken future.
- Fix all known instances of #780
## v1.3.1 - 2025-03-12
## [v1.3.1](https://github.com/rtic-rs/rtic/commit/bac77de9bc5249a8d4e34c816bb94f5945fb1f58) - 2025-03-12
### Fixed
@ -45,7 +45,7 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
[#780]: https://github.com/rtic-rs/rtic/issues/780
## v1.3.0 - 2024-05-01
## [v1.3.0](https://github.com/rtic-rs/rtic/commit/4a23c8d6da918b2ddd5a6b694b584fd2737833bb) - 2024-05-01
### Changed
@ -57,7 +57,7 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
- `defmt v0.3` derives added and forwarded to `embedded-hal(-x)` crates.
- signal structure
## v1.2.0 - 2024-01-10
## [v1.2.0](https://github.com/rtic-rs/rtic/commit/f69ecb05a95fd7c2906d060c1548291052dba6bd) - 2024-01-10
### Changed
@ -67,35 +67,35 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
- `make_channel` now accepts `Type` expressions instead of only `TypePath` expressions.
## v1.1.1 - 2023-12-04
## [v1.1.1](https://github.com/rtic-rs/rtic/commit/1622f6b953c93c3a680769636b60733f281f1ac0) - 2023-12-04
### Fixed
- Fix features for `docs.rs`
## v1.1.0 - 2023-12-04
## [v1.1.0](https://github.com/rtic-rs/rtic/commit/ea8de913d7e7265b13edee779e4ab614a227bef2) - 2023-12-04
### Added
- `arbiter::spi::ArbiterDevice` for sharing SPI buses using `embedded-hal-async` traits.
- `arbiter::i2c::ArbiterDevice` for sharing I2C buses using `embedded-hal-async` traits.
## v1.0.3
## [v1.0.3](https://github.com/rtic-rs/rtic/commit/2b2208e217a96086696bd6f36cff2a6cd4c4ac9f)
- `portable-atomic` used as a drop in replacement for `core::sync::atomic` in code and macros. `portable-atomic` imported with `default-features = false`, as we do not require CAS.
## v1.0.2 - 2023-08-29
## [v1.0.2](https://github.com/rtic-rs/rtic/commit/adfe33f5976991a2d957c9e5f209904d46eb934a) - 2023-08-29
### Fixed
- `make_channel` no longer requires the user crate to have `critical_section` in scope
## v1.0.1 - 2023-06-14
## [v1.0.1](https://github.com/rtic-rs/rtic/commit/db18c00c00deb146478de1b0f94f8181300c47ce) - 2023-06-14
### Fixed
- `make_channel` could be UB
## v1.0.0 - 2023-05-31 - yanked
## [v1.0.0](https://github.com/rtic-rs/rtic/commit/c3884e212c36d2a9cf260b1d9ae37c92b91ea73d) - 2023-05-31 - yanked
- Initial release