Skip to content

Commit

Permalink
Merge pull request #176 from redboltz/update_to_310
Browse files Browse the repository at this point in the history
Updated the version to 3.1.0.
  • Loading branch information
redboltz authored Mar 25, 2019
2 parents f8bf44e + b475ebb commit f3c665a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 3.1.0
* Fixed inefficient passed by value. (#174)
* Fixed unsugscribe message packet id position for continuours buffer. (#167)
* Fixed subscribe message remaining length buffer size. (#165)
* Added broker example. (#164)
* Improved CI. (#161)
* Added 32bit packet id support. It is out of MQTT spec. (#160, #163, #166, #168)
* Added store assertion to detect internal logic error. (#157)
* Fixed life keeper storing timing. (#156, #159)
* Added getter for handlers. (#155)
* Fixed async write callback. (#154)
* Fixed ambiguous function call on C++17 visit call. (#153)
* Improved packet id allocating algorithm. (#152, #162)
* Removed throwing exception when error on close happens. (#151)
* Added re-listen support after listining socket closed. (#150)
* Fixed string_view definition (#146)
* Added string (UTF-8) checking. It is disabled by default. Define MQTT_USE_STR_CHECK to enable it. (#142, #143)
* Improved documents (#141, #131, #172, #173)
* Improved build mechanisim (#140, #147, #148, #170)
* Added custom next mqtt message read handler setting mechanism (#139)

## 3.0.0
* << Breaking change >> mqtt_cpp requires full C++14 feature.
* Added boost::asio::const_buffer interface. User can use it as topic name and contents(payload).
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 3.0.0 [![Build Status](https://travis-ci.org/redboltz/mqtt_cpp.svg?branch=master)](https://travis-ci.org/redboltz/mqtt_cpp) [![Build status](https://ci.appveyor.com/api/projects/status/21a267hd34s0kqu5/branch/master?svg=true)](https://ci.appveyor.com/project/redboltz/mqtt-client-cpp/branch/master)
Version 3.1.0 [![Build Status](https://travis-ci.org/redboltz/mqtt_cpp.svg?branch=master)](https://travis-ci.org/redboltz/mqtt_cpp) [![Build status](https://ci.appveyor.com/api/projects/status/21a267hd34s0kqu5/branch/master?svg=true)](https://ci.appveyor.com/project/redboltz/mqtt-client-cpp/branch/master)

## Overview

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 3.0.0.{build}
version: 3.1.0.{build}

image: Visual Studio 2017

Expand Down

0 comments on commit f3c665a

Please sign in to comment.