bump revno up

This commit is contained in:
Sergio R. Caprile 2023-07-04 12:18:09 -03:00
parent d791ce393b
commit 5c8e05a4fc
3 changed files with 5 additions and 4 deletions

View File

@ -3452,8 +3452,9 @@ static void mqtt_cb(struct mg_connection *c, int ev, void *ev_data,
if (c->is_mqtt5) remaining_len += 2; // 3.4.2
mg_mqtt_send_header(
c, mm.qos == 2 ? MQTT_CMD_PUBREC : MQTT_CMD_PUBACK, 0,
remaining_len);
c,
(uint8_t) (mm.qos == 2 ? MQTT_CMD_PUBREC : MQTT_CMD_PUBACK),
0, remaining_len);
mg_send(c, &id, sizeof(id));
if (c->is_mqtt5) {

View File

@ -20,7 +20,7 @@
#ifndef MONGOOSE_H
#define MONGOOSE_H
#define MG_VERSION "7.10"
#define MG_VERSION "7.11"
#ifdef __cplusplus
extern "C" {

View File

@ -1 +1 @@
#define MG_VERSION "7.10"
#define MG_VERSION "7.11"