Long overdue bump of in-development version number.

pull/2505/head
Roger A. Light 4 years ago
parent 9f9813aff4
commit 7552e944a8

@ -6,7 +6,7 @@
cmake_minimum_required(VERSION 3.10) cmake_minimum_required(VERSION 3.10)
set (VERSION 2.0.99) set (VERSION 2.1.0)
project(mosquitto project(mosquitto
VERSION ${VERSION} VERSION ${VERSION}
DESCRIPTION "Eclipse Mosquitto" DESCRIPTION "Eclipse Mosquitto"

@ -142,7 +142,7 @@ WITH_SQLITE=yes
# Also bump lib/mosquitto.h, CMakeLists.txt, # Also bump lib/mosquitto.h, CMakeLists.txt,
# installer/mosquitto.nsi, installer/mosquitto64.nsi # 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. # Client library SO version. Bump if incompatible API/ABI changes are made.
SOVERSION=1 SOVERSION=1

@ -65,8 +65,8 @@ extern "C" {
#include <stdint.h> #include <stdint.h>
#define LIBMOSQUITTO_MAJOR 2 #define LIBMOSQUITTO_MAJOR 2
#define LIBMOSQUITTO_MINOR 0 #define LIBMOSQUITTO_MINOR 1
#define LIBMOSQUITTO_REVISION 14 #define LIBMOSQUITTO_REVISION 0
/* LIBMOSQUITTO_VERSION_NUMBER looks like 1002001 for e.g. version 1.2.1. */ /* 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) #define LIBMOSQUITTO_VERSION_NUMBER (LIBMOSQUITTO_MAJOR*1000000+LIBMOSQUITTO_MINOR*1000+LIBMOSQUITTO_REVISION)

@ -11,7 +11,7 @@ SetCompressor /SOLID lzma
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "Eclipse Mosquitto" Name "Eclipse Mosquitto"
!define VERSION 2.0.14 !define VERSION 2.1.0
OutFile "mosquitto-${VERSION}-install-windows-x86.exe" OutFile "mosquitto-${VERSION}-install-windows-x86.exe"
InstallDir "$PROGRAMFILES\Mosquitto" InstallDir "$PROGRAMFILES\Mosquitto"

@ -11,7 +11,7 @@ SetCompressor /SOLID lzma
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "Eclipse Mosquitto" Name "Eclipse Mosquitto"
!define VERSION 2.0.14 !define VERSION 2.1.0
OutFile "mosquitto-${VERSION}-install-windows-x64.exe" OutFile "mosquitto-${VERSION}-install-windows-x64.exe"
!include "x64.nsh" !include "x64.nsh"

@ -1,8 +1,8 @@
#!/bin/sh #!/bin/sh
MAJOR=2 MAJOR=2
MINOR=0 MINOR=1
REVISION=14 REVISION=0
sed -i "s/^VERSION=.*/VERSION=${MAJOR}.${MINOR}.${REVISION}/" config.mk sed -i "s/^VERSION=.*/VERSION=${MAJOR}.${MINOR}.${REVISION}/" config.mk

@ -1,5 +1,5 @@
name: mosquitto name: mosquitto
version: 2.0.14 version: 2.1.0
summary: Eclipse Mosquitto MQTT broker 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 description: This is a message broker that supports version 5.0, 3.1.1, and 3.1 of the MQTT
protocol. protocol.

Loading…
Cancel
Save