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