aboutsummaryrefslogtreecommitdiff
path: root/rtic-monotonics/CHANGELOG.md
diff options
context:
space:
mode:
authorFinomnis <Finomnis@users.noreply.github.com>2023-12-04 15:53:02 +0100
committerGitHub <noreply@github.com>2023-12-04 14:53:02 +0000
commitc227a71d243db6d539f3c64e3b4bb1b3ab282693 (patch)
tree6a1175f98d6c823b3e2beb1fbb9ed9e462f46811 /rtic-monotonics/CHANGELOG.md
parent3de5f793f361d97e061999ce53130faae7bb0d2d (diff)
Refactor race condition free timer helper (#850)
* Implement half_period_counter in rtic-time * Rename compute_now to calculate_now, use it in stm32 and imxrt * Add more tests * Add some docs * Fix clippy warning, add imxrt timer to monotonics tests * Bump dependency version to make sure monotonics will build properly * Add changelog to rtic-monotonics * Add more docs * Add more docs * Finish documentation * Fix typos * Switch from atomic-polyfill to portable-atomic * Some more doc fixes * More doc fixes * Minor doc fix * Minor doc fix * Fix Atomics not existing * Fix example * Minor example improvement * Revert back to atomic-polyfill * Fix cargo.toml formatting * Remove atomic-polyfill * Attempt to fix unused macro warning * Remove atomics completely from half period counter * Minor doc fix * Doc fixes * Doc fixes * Remove obsolete comment * Fix ordering in monotonic initialization sequence
Diffstat (limited to 'rtic-monotonics/CHANGELOG.md')
-rw-r--r--rtic-monotonics/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/rtic-monotonics/CHANGELOG.md b/rtic-monotonics/CHANGELOG.md
index 4dea3fc..990da3a 100644
--- a/rtic-monotonics/CHANGELOG.md
+++ b/rtic-monotonics/CHANGELOG.md
@@ -11,6 +11,10 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
- **Soundness fix:** Monotonics did not wait long enough in `Duration` based delays.
+### Changed
+
+- Bump `rtic-time`
+
## v1.3.0 - 2023-11-08
### Added