Skip to content

Commit 6ea5659

Browse files
committed
io: Release embedded-io 0.5
1 parent 35b0dc3 commit 6ea5659

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

embedded-io-adapters/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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.5.0 - 2023-08-06
9+
10+
- First release

embedded-io-adapters/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-io-adapters"
3-
version = "0.1.0"
3+
version = "0.5.0"
44
edition = "2021"
55
description = "Adapters between the `embedded-io` traits and other I/O traits"
66
repository = "https://github.com/rust-embedded/embedded-hal"

embedded-io-async/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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.5.0 - 2023-08-06
9+
10+
- First release

embedded-io/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## 0.5.0 - 2023-08-06
99

1010
- Add `ReadReady`, `WriteReady` traits. They allow peeking whether the I/O handle is ready to read/write, so they allow using the traits in a non-blocking way.
1111
- Add variants to `ErrorKind` mirroring `std::io::ErrorKind`.
1212
- Add `From` impls to convert between `ErrorKind` and `std::io::ErrorKind`.
1313
- Moved `embedded_io::blocking` to the crate root.
1414
- Split async traits to the `embedded-io-async` crate.
1515
- Split trait adapters to the `embedded-io-adapters` crate.
16-
- Add `std::io` impls for `ReadExactError` & `WriteAllError`.
16+
- Add `std::error` impls for `ReadExactError` & `WriteAllError`.
1717
- Rename trait `Io` to `ErrorKind`, for consistency with `embedded-hal`.
1818

1919
## 0.4.0 - 2022-11-25

0 commit comments

Comments
 (0)