Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release of v2.8.2. #49

Merged
merged 1 commit into from
Jun 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion include/CppLinuxSerial/SerialPort.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading