From aa14c006e04ab6e004d408cbf88af4dc5190f1c0 Mon Sep 17 00:00:00 2001 From: Alex Martens Date: Mon, 6 May 2024 17:53:26 -0700 Subject: [PATCH] version: 0.21.1 -> 0.22.0 --- CHANGELOG.md | 11 ++++++++--- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f858153..6550959 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,15 @@ 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.21.1] - 2023-03-26 +## [0.22.0] - 2024-05-06 +### Added +- Added support for the upper pins (C0-C7 on the FT232H). + +## [0.21.1] - 2024-03-26 ### Added - Added `ftdi-vendored` and `ftdi-libusb1-sys` passthrough features for linking with the `libftdi` backend. -## [0.21.0] - 2023-01-09 +## [0.21.0] - 2024-01-09 ### Changed - updated the v1 release of `embedded-hal` from `1.0.0-rc.3` to `1`. - updated the v1 release of `embedded-hal-nb` from `1.0.0-rc.3` to `1`. @@ -177,7 +181,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2020-09-12 - Initial release -[Unreleased]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.21.1...HEAD +[Unreleased]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.22.0...HEAD +[0.22.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.21.1...v0.22.0 [0.21.1]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.21.0...v0.21.1 [0.21.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.20.0...v0.21.0 [0.20.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.19.0...v0.20.0 diff --git a/Cargo.toml b/Cargo.toml index 57aeb4b..978766a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ftdi-embedded-hal" -version = "0.21.1" +version = "0.22.0" authors = ["Alex Martens "] description = "embedded-hal implementation for FTDI USB devices." keywords = ["ftdi", "usb", "io", "hal"] diff --git a/README.md b/README.md index d671794..d679922 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ FTDI device into the [embedded-hal] traits. ```toml [dependencies.ftdi-embedded-hal] -version = "0.21.1" +version = "0.22.0" features = ["libftd2xx", "libftd2xx-static"] ``` diff --git a/src/lib.rs b/src/lib.rs index 94855d8..e89db8a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ //! //! ```toml //! [dependencies.ftdi-embedded-hal] -//! version = "0.21.1" +//! version = "0.22.0" //! features = ["libftd2xx", "libftd2xx-static"] //! ``` //!