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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog for coreMQTT Client Library

## v5.0.2 (April 2026)

### Changes

- Modified `SUBACK`/`UNSUBACK` handling to only return `MQTTServerRefused` for malformed packets through `MQTT_ProcessLoop`/`MQTT_ReceiveLoop`.
- Added `MQTT_GetUnsubAckStatusCodes` API.

## v5.0.1 (March 2026)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ safety through the

-For MQTT v3.1.1 [(MQTTv3 Specification)](https://docs.oasis-open.org/mqtt/mqtt/v3.1.1/mqtt-v3.1.1.html), use code from tag : [coreMQTT v2.3.1](https://github.com/FreeRTOS/coreMQTT/tree/v2.3.1)

-For MQTT v5.0 [(MQTTv5 Specification)](https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html), use code from tag : [coreMQTT v5.0.1](https://github.com/FreeRTOS/coreMQTT/tree/v5.0.1)
-For MQTT v5.0 [(MQTTv5 Specification)](https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html), use code from tag : [coreMQTT v5.0.2](https://github.com/FreeRTOS/coreMQTT/tree/v5.0.2)

See memory requirements for this library
[here](./docs/doxygen/include/size_table.md).
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/config.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = coreMQTT
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v5.0.1
PROJECT_NUMBER = v5.0.2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name : "coreMQTT"
version: "v5.0.1"
version: "v5.0.2"
description: |
"Client implementation of the MQTT 5.0 specification for embedded devices.\n"
license: "MIT"
2 changes: 1 addition & 1 deletion source/include/core_mqtt.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
* If MQTT_LIBRARY_VERSION ends with + it represents the version in development
* after the numbered release.
*/
#define MQTT_LIBRARY_VERSION "v5.0.1"
#define MQTT_LIBRARY_VERSION "v5.0.2"
/** @endcond */

/**
Expand Down
Loading