diff --git a/CHANGELOG.md b/CHANGELOG.md index 94824b68..e0081814 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 13.2.0 +* Added locks for timers. (#973) +* Added logs. (#971) +* Added pre-opened socket support for client. (#970) +* Added example for TLS-SNI. (#961) +* Removed old TS code. (#952) +* Fixed invalid timing async_shutdown handler call. (#950) +* Improved cmake settings. (#948) + ## 13.1.0 * Added clear username and password functionality. (#944) * Refined utility tools. (#941, #942) diff --git a/CMakeLists.txt b/CMakeLists.txt index c7528246..ffe4598c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ CMAKE_MINIMUM_REQUIRED (VERSION 3.13.0) -PROJECT (mqtt_cpp_iface VERSION 13.1.0) +PROJECT (mqtt_cpp_iface VERSION 13.2.0) SET(CMAKE_CXX_STANDARD 14) SET(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/README.md b/README.md index a4a544d5..3c03c775 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # MQTT client/server for C++14 based on Boost.Asio -Version 13.1.0 [![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.0 [![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) Important note https://github.com/redboltz/mqtt_cpp/wiki/News.