Skip to content
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 13.2.2
* Fix tls socket can block while doing clean shutdown on a forced disconnect (#1000)
* Wrapped connection_error_called by socket's strand. (#993)
* Fixed CMake error on INSTALL(EXPORT ...) when adding the mqtt_cpp package with CPM.cmake (#990)
* Fixed store_ management. (#988)
* Fixed qos2_publish_handled_ insertion timing. (#987)
* Fixed qos2_publish_handled_ invalidly remains issue. (#986)
* Fixed client certificate treatment. (#983)
* Fixed client cert verify setting timing. (#982)
* Refined documents. (#979)

## 13.2.1
* Fixed async socket close blocking problem. (#977)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MQTT client/server for C++14 based on Boost.Asio

Version 13.2.1 [![Actions Status](https://github.com/redboltz/mqtt_cpp/workflows/CI/badge.svg)](https://github.com/redboltz/mqtt_cpp/actions)[![Build Status](https://dev.azure.com/redboltz/redboltz/_apis/build/status/redboltz.mqtt_cpp?branchName=master)](https://dev.azure.com/redboltz/redboltz/_build/latest?definitionId=6&branchName=master)[![codecov](https://codecov.io/gh/redboltz/mqtt_cpp/branch/master/graph/badge.svg)](https://codecov.io/gh/redboltz/mqtt_cpp)
Version 13.2.2 [![Actions Status](https://github.com/redboltz/mqtt_cpp/workflows/CI/badge.svg)](https://github.com/redboltz/mqtt_cpp/actions)[![Build Status](https://dev.azure.com/redboltz/redboltz/_apis/build/status/redboltz.mqtt_cpp?branchName=master)](https://dev.azure.com/redboltz/redboltz/_build/latest?definitionId=6&branchName=master)[![codecov](https://codecov.io/gh/redboltz/mqtt_cpp/branch/master/graph/badge.svg)](https://codecov.io/gh/redboltz/mqtt_cpp)

**mqtt_cpp has been serious bugfix only status. The new project [async_mqtt](https://github.com/redboltz/async_mqtt) has been started based on mqtt_cpp's experience. New featureas would be added on async_mqtt.**

Expand Down
Loading