Skip to content

Commit 4bd338e

Browse files
authored
Merge pull request #49 from gbmhunter/develop
Release of v2.8.2.
2 parents cf0520e + d1a5d4f commit 4bd338e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## [2.8.2] - 2024-06-02
11+
12+
- 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)).
13+
1014
## [v2.8.1] - 2023-12-16
1115

1216
- 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.
140144
### Added
141145
- Initial commit. serial-port-cpp library has basic functions up and running.
142146
143-
[Unreleased]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.1...HEAD
147+
[Unreleased]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.2...HEAD
148+
[v2.8.2]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.1...v2.8.2
144149
[v2.8.1]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.0...v2.8.1
145150
[v2.8.0]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.7.2...v2.8.0
146151
[v2.7.2]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.7.1...v2.7.2

include/CppLinuxSerial/SerialPort.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ namespace mn {
145145
void SetNumStopBits(NumStopBits numStopBits);
146146

147147
/// \brief Sets the read timeout (in milliseconds)/blocking mode.
148-
/// \details Only call when state != OPEN. This method manupulates VMIN and VTIME.
148+
/// \details Only call when state != OPEN. This method manipulates VMIN and VTIME.
149149
/// \param timeout_ms Set to -1 to infinite timeout, 0 to return immediately with any data (non
150150
/// blocking, or >0 to wait for data for a specified number of milliseconds). Timeout will
151151
/// be rounded to the nearest 100ms (a Linux API restriction). Maximum value limited to

0 commit comments

Comments
 (0)