aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--rtic-monotonics/CHANGELOG.md8
-rw-r--r--rtic-monotonics/Cargo.toml4
2 files changed, 8 insertions, 4 deletions
diff --git a/rtic-monotonics/CHANGELOG.md b/rtic-monotonics/CHANGELOG.md
index 33fd2e90..b19a4783 100644
--- a/rtic-monotonics/CHANGELOG.md
+++ b/rtic-monotonics/CHANGELOG.md
@@ -5,7 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
-## [Unreleased]
+## Unreleased
+
+## v1.0.1 - 2023-08-20
### Added
@@ -15,9 +17,11 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
### Changed
+- Bump `embedded-hal-async`
+
### Fixed
- Unmask the `rp2040` interrupt
- Use `$crate` and fully qualified paths in macros
-## [v1.0.0] - 2023-05-31
+## v1.0.0 - 2023-05-31
diff --git a/rtic-monotonics/Cargo.toml b/rtic-monotonics/Cargo.toml
index 6af6df0e..b88b0881 100644
--- a/rtic-monotonics/Cargo.toml
+++ b/rtic-monotonics/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rtic-monotonics"
-version = "1.0.0"
+version = "1.0.1"
edition = "2021"
authors = [
@@ -20,7 +20,7 @@ rustdoc-flags = ["--cfg", "docsrs"]
[dependencies]
rtic-time = { version = "1.0.0", path = "../rtic-time" }
-embedded-hal-async = { version = "0.2.0-alpha.1", optional = true }
+embedded-hal-async = { version = "1.0.0-rc.1", optional = true }
fugit = { version = "0.3.6" }
atomic-polyfill = "1"
cfg-if = "1.0.0"