From 7552e944a8ae04fdd6171c0c8c0125b38bd90369 Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Thu, 24 Mar 2022 16:06:43 +0000 Subject: [PATCH] Long overdue bump of in-development version number. --- CMakeLists.txt | 2 +- config.mk | 2 +- include/mosquitto.h | 4 ++-- installer/mosquitto.nsi | 2 +- installer/mosquitto64.nsi | 2 +- set-version.sh | 4 ++-- snap/snapcraft.yaml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76753dec..1f37575b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.10) -set (VERSION 2.0.99) +set (VERSION 2.1.0) project(mosquitto VERSION ${VERSION} DESCRIPTION "Eclipse Mosquitto" diff --git a/config.mk b/config.mk index 2f184579..3207dc2e 100644 --- a/config.mk +++ b/config.mk @@ -142,7 +142,7 @@ WITH_SQLITE=yes # Also bump lib/mosquitto.h, CMakeLists.txt, # installer/mosquitto.nsi, installer/mosquitto64.nsi -VERSION=2.0.14 +VERSION=2.1.0 # 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 840e9da5..04d401f6 100644 --- a/include/mosquitto.h +++ b/include/mosquitto.h @@ -65,8 +65,8 @@ extern "C" { #include #define LIBMOSQUITTO_MAJOR 2 -#define LIBMOSQUITTO_MINOR 0 -#define LIBMOSQUITTO_REVISION 14 +#define LIBMOSQUITTO_MINOR 1 +#define LIBMOSQUITTO_REVISION 0 /* 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 9cbd963c..241618c0 100644 --- a/installer/mosquitto.nsi +++ b/installer/mosquitto.nsi @@ -11,7 +11,7 @@ SetCompressor /SOLID lzma !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' Name "Eclipse Mosquitto" -!define VERSION 2.0.14 +!define VERSION 2.1.0 OutFile "mosquitto-${VERSION}-install-windows-x86.exe" InstallDir "$PROGRAMFILES\Mosquitto" diff --git a/installer/mosquitto64.nsi b/installer/mosquitto64.nsi index 9e7ed8e2..0259d07a 100644 --- a/installer/mosquitto64.nsi +++ b/installer/mosquitto64.nsi @@ -11,7 +11,7 @@ SetCompressor /SOLID lzma !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' Name "Eclipse Mosquitto" -!define VERSION 2.0.14 +!define VERSION 2.1.0 OutFile "mosquitto-${VERSION}-install-windows-x64.exe" !include "x64.nsh" diff --git a/set-version.sh b/set-version.sh index 5f9ae4df..d104759f 100755 --- a/set-version.sh +++ b/set-version.sh @@ -1,8 +1,8 @@ #!/bin/sh MAJOR=2 -MINOR=0 -REVISION=14 +MINOR=1 +REVISION=0 sed -i "s/^VERSION=.*/VERSION=${MAJOR}.${MINOR}.${REVISION}/" config.mk diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 5576a266..4d70eab8 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: mosquitto -version: 2.0.14 +version: 2.1.0 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.