Skip to content

Commit a762929

Browse files
committed
Release embassy-time v0.1.1
1 parent e7ff759 commit a762929

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

embassy-time/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## 0.1.1 - 2023-04-13
9+
10+
- Update `embedded-hal-async` to `0.2.0-alpha.1` (uses `async fn` in traits).
11+
- Update `embedded-hal v1` to `1.0.0-alpha.10`. (Note: v0.2 support is kept unchanged).
12+
- Remove dep on `embassy-sync`.
13+
- Fix reentrancy issues in the `std` time driver (#1177)
14+
- Add `Duration::from_hz()`.
15+
- impl `From` conversions to/from `core::time::Duration`.
16+
- Add `#[must_use]` to all futures.
17+
- Add inherent `async fn tick()` to `Ticker`, so you can use it directly without the `Stream` trait.
18+
- Add more tick rates.
19+
- impl `Default` for `Signal`
20+
- Remove unnecessary uses of `atomic-polyfill`
21+
22+
## 0.1.0 - 2022-08-26
23+
24+
- First release

embassy-time/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embassy-time"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "Instant and Duration for embedded no-std systems, with async timer support"
66
repository = "https://github.com/embassy-rs/embassy"

0 commit comments

Comments
 (0)