From b2a5cb811555bb8ae30d9436b64e97791ede0958 Mon Sep 17 00:00:00 2001 From: Zac Berkowitz Date: Sun, 8 Aug 2021 08:32:25 -0400 Subject: [PATCH] bump mio-serial dependency to version 5 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b2be4a..faf81da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [5.4.0] 2021-08-08 +Final release of version 5.4. No code changes besides bumping `mio-serial` to 5.0 since the +previous 5.4.0-beta4. + +### Added +- [ColinFinck](https://github.com/ColinFinck) added as maintainer for `tokio-serial` +- [estokes](https://github.com/estokes) added as maintainer for `tokio-serial` + +### Changed +- Bumped [mio-serial](https://github.com/berkowski/mio-serial) to 5.0.0 + ## [5.4.0-beta4] 2021-07-23 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 8de63d2..a81d216 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-serial" -version = "5.4.0-beta4" +version = "5.4.0" authors = ["Zac Berkowitz "] description = "A serial port implementation for tokio" license = "MIT" @@ -38,7 +38,7 @@ default-features = false optional = true [dependencies.mio-serial] -version = "4.0.0-beta4" +version = "5" default-features = false [dependencies.bytes]