From 3923526c6b4c048bbecad2506c4c9963bc46cd36 Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Mon, 18 Sep 2023 22:22:14 +0100 Subject: [PATCH] Bump version, add webpage. --- CMakeLists.txt | 2 +- ChangeLog.txt | 2 +- config.mk | 2 +- include/mosquitto.h | 2 +- installer/mosquitto.nsi | 2 +- installer/mosquitto64.nsi | 2 +- set-version.sh | 2 +- snap/snapcraft.yaml | 2 +- www/posts/2023/08/version-2-0-17-released.md | 6 ++--- www/posts/2023/09/version-2-0-18-released.md | 23 ++++++++++++++++++++ 10 files changed, 34 insertions(+), 11 deletions(-) create mode 100644 www/posts/2023/09/version-2-0-18-released.md diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d337c9d..088e9a92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.1) cmake_policy(SET CMP0042 NEW) project(mosquitto) -set (VERSION 2.0.17) +set (VERSION 2.0.18) list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/") diff --git a/ChangeLog.txt b/ChangeLog.txt index f75338e2..0d7b3df0 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,4 +1,4 @@ -2.0.18 - 2023-09-12 +2.0.18 - 2023-09-18 =================== Broker: diff --git a/config.mk b/config.mk index aebb6010..6e0139c1 100644 --- a/config.mk +++ b/config.mk @@ -130,7 +130,7 @@ WITH_ASAN=no # Also bump lib/mosquitto.h, CMakeLists.txt, # installer/mosquitto.nsi, installer/mosquitto64.nsi -VERSION=2.0.17 +VERSION=2.0.18 # Client library SO version. Bump if incompatible API/ABI changes are made. SOVERSION=1 diff --git a/include/mosquitto.h b/include/mosquitto.h index 2f3c6384..5633b407 100644 --- a/include/mosquitto.h +++ b/include/mosquitto.h @@ -66,7 +66,7 @@ extern "C" { #define LIBMOSQUITTO_MAJOR 2 #define LIBMOSQUITTO_MINOR 0 -#define LIBMOSQUITTO_REVISION 17 +#define LIBMOSQUITTO_REVISION 18 /* LIBMOSQUITTO_VERSION_NUMBER looks like 1002001 for e.g. version 1.2.1. */ #define LIBMOSQUITTO_VERSION_NUMBER (LIBMOSQUITTO_MAJOR*1000000+LIBMOSQUITTO_MINOR*1000+LIBMOSQUITTO_REVISION) diff --git a/installer/mosquitto.nsi b/installer/mosquitto.nsi index 284f1641..85030cbc 100644 --- a/installer/mosquitto.nsi +++ b/installer/mosquitto.nsi @@ -9,7 +9,7 @@ !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' Name "Eclipse Mosquitto" -!define VERSION 2.0.17 +!define VERSION 2.0.18 OutFile "mosquitto-${VERSION}-install-windows-x86.exe" InstallDir "$PROGRAMFILES\mosquitto" diff --git a/installer/mosquitto64.nsi b/installer/mosquitto64.nsi index fc502241..7c9a544b 100644 --- a/installer/mosquitto64.nsi +++ b/installer/mosquitto64.nsi @@ -9,7 +9,7 @@ !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' Name "Eclipse Mosquitto" -!define VERSION 2.0.17 +!define VERSION 2.0.18 OutFile "mosquitto-${VERSION}-install-windows-x64.exe" !include "x64.nsh" diff --git a/set-version.sh b/set-version.sh index ee8d287b..b0a179d3 100755 --- a/set-version.sh +++ b/set-version.sh @@ -2,7 +2,7 @@ MAJOR=2 MINOR=0 -REVISION=17 +REVISION=18 sed -i "s/^VERSION=.*/VERSION=${MAJOR}.${MINOR}.${REVISION}/" config.mk diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 16af47ff..53919a34 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: mosquitto -version: 2.0.17 +version: 2.0.18 summary: Eclipse Mosquitto MQTT broker description: This is a message broker that supports version 5.0, 3.1.1, and 3.1 of the MQTT protocol. diff --git a/www/posts/2023/08/version-2-0-17-released.md b/www/posts/2023/08/version-2-0-17-released.md index 4dd16a48..aae33410 100644 --- a/www/posts/2023/08/version-2-0-17-released.md +++ b/www/posts/2023/08/version-2-0-17-released.md @@ -1,6 +1,6 @@ -Version 2.0.16 of Mosquitto has been released. This is a bugfix release. +Version 2.0.17 of Mosquitto has been released. This is a bugfix release. Broker: - Fix `max_queued_messages 0` stopping clients from receiving messages. diff --git a/www/posts/2023/09/version-2-0-18-released.md b/www/posts/2023/09/version-2-0-18-released.md new file mode 100644 index 00000000..4c234e3c --- /dev/null +++ b/www/posts/2023/09/version-2-0-18-released.md @@ -0,0 +1,23 @@ + + +Version 2.0.18 of Mosquitto has been released. This is a bugfix release. + +Broker: +- Fix crash on subscribe under certain unlikely conditions. Closes [#2885]. + Closes [#2881]. + +Clients: +- Fix mosquitto_rr not honouring `-R`. Closes [#2893]. + +[#2881]: https://github.com/eclipse/mosquitto/issues/2881 +[#2885]: https://github.com/eclipse/mosquitto/issues/2885 +[#2893]: https://github.com/eclipse/mosquitto/issues/2893