From d1a5d4f78bffb98e094ca86f1ab7cba426314f78 Mon Sep 17 00:00:00 2001 From: Geoffrey Hunter Date: Sun, 2 Jun 2024 20:29:46 +1200 Subject: [PATCH] Prep. for release of v2.8.2. --- CHANGELOG.md | 7 ++++++- include/CppLinuxSerial/SerialPort.hpp | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e3bbda..c088692 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## [2.8.2] - 2024-06-02 + +- Fix bug where this project could not be added into another CMake file with `add_subdirectory()` correctly (thanks [alexg-k](https://github.com/alexg-k)). + ## [v2.8.1] - 2023-12-16 - Added missing header include (thanks [Uglješa Lukešević](https://github.com/ukicomputers)). @@ -140,7 +144,8 @@ Big thanks to https://github.com/MadsAndreasen-Zoetis for these improvements. ### Added - Initial commit. serial-port-cpp library has basic functions up and running. -[Unreleased]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.1...HEAD +[Unreleased]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.2...HEAD +[v2.8.2]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.1...v2.8.2 [v2.8.1]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.0...v2.8.1 [v2.8.0]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.7.2...v2.8.0 [v2.7.2]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.7.1...v2.7.2 diff --git a/include/CppLinuxSerial/SerialPort.hpp b/include/CppLinuxSerial/SerialPort.hpp index e330fea..4326aa4 100644 --- a/include/CppLinuxSerial/SerialPort.hpp +++ b/include/CppLinuxSerial/SerialPort.hpp @@ -145,7 +145,7 @@ namespace mn { void SetNumStopBits(NumStopBits numStopBits); /// \brief Sets the read timeout (in milliseconds)/blocking mode. - /// \details Only call when state != OPEN. This method manupulates VMIN and VTIME. + /// \details Only call when state != OPEN. This method manipulates VMIN and VTIME. /// \param timeout_ms Set to -1 to infinite timeout, 0 to return immediately with any data (non /// blocking, or >0 to wait for data for a specified number of milliseconds). Timeout will /// be rounded to the nearest 100ms (a Linux API restriction). Maximum value limited to