From 6990b070ca5584e08b2651fa6d548e0efb95838c Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Sun, 22 Oct 2023 17:26:13 +0100 Subject: [PATCH] prepare v0.6.1 --- embedded-io/CHANGELOG.md | 4 ++++ embedded-io/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/embedded-io/CHANGELOG.md b/embedded-io/CHANGELOG.md index bed5fc16f..286d1b707 100644 --- a/embedded-io/CHANGELOG.md +++ b/embedded-io/CHANGELOG.md @@ -5,6 +5,10 @@ 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.6.1 - 2023-10-22 + +- Make `SliceWriteError` publicly available. + ## 0.6.0 - 2023-10-02 - Prohibit `Write::write` implementations returning `Ok(0)` unless there is no diff --git a/embedded-io/Cargo.toml b/embedded-io/Cargo.toml index d96ff0b47..448b752f2 100644 --- a/embedded-io/Cargo.toml +++ b/embedded-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embedded-io" -version = "0.6.0" +version = "0.6.1" edition = "2021" description = "Embedded IO traits" repository = "https://github.com/rust-embedded/embedded-hal"