bump embassy-time 0.3, embassy-executor 0.5, embassy-net 0.4.

This commit is contained in:
Dario Nieuwenhuis
2024-01-11 22:57:29 +01:00
parent f0606da9ad
commit 22197320ff
64 changed files with 137 additions and 123 deletions

View File

@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.3.0 - 2024-01-11
- Update `embedded-hal-async` to `1.0.0`
- Update `embedded-hal v1` to `1.0.0`
- Split the time driver to a separate `embassy-time-driver` crate.
## 0.2.0 - 2023-12-04
- Added tick rates in multiples of 10 kHz

View File

@@ -1,6 +1,6 @@
[package]
name = "embassy-time"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
description = "Instant and Duration for embedded no-std systems, with async timer support"
repository = "https://github.com/embassy-rs/embassy"
@@ -422,4 +422,4 @@ wasm-timer = { version = "0.2.5", optional = true }
[dev-dependencies]
serial_test = "0.9"
critical-section = { version = "1.1", features = ["std"] }
embassy-executor = { version = "0.4.0", path = "../embassy-executor" }
embassy-executor = { version = "0.5.0", path = "../embassy-executor" }