From 2805ddedeaae7c5f8df6fe44e5a19f50a01c6709 Mon Sep 17 00:00:00 2001 From: Ian Craggs Date: Tue, 7 Jan 2025 12:43:13 +0000 Subject: [PATCH] Add version number to the doc --- src/MQTTAsync.h | 4 +++- src/MQTTClient.h | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/MQTTAsync.h b/src/MQTTAsync.h index 3bcf52f1..7c5b6214 100644 --- a/src/MQTTAsync.h +++ b/src/MQTTAsync.h @@ -29,10 +29,12 @@ * @cond MQTTAsync_main * @mainpage Asynchronous MQTT client library for C (MQTTAsync) * - * © Copyright 2009, 2025 IBM Corp., Ian Craggs and others + * © Copyright 2009, 2025 IBM Corp., Ian Craggs and others. * * @brief An Asynchronous MQTT client library for C. * + * Version 1.3.14 + * * An MQTT client application connects to MQTT-capable servers. * A typical client is responsible for collecting information from a telemetry * device and publishing the information to the server. It can also subscribe diff --git a/src/MQTTClient.h b/src/MQTTClient.h index b5879108..c8a4de35 100644 --- a/src/MQTTClient.h +++ b/src/MQTTClient.h @@ -45,6 +45,8 @@ * * @brief An MQTT client library in C. * + * Version 1.3.14 + * * These pages describe the original more synchronous API which might be * considered easier to use. Some of the calls will block. For the new * totally asynchronous API where no calls block, which is especially suitable