From 414946ff07b382bd00bdf48c7cc5a93e4c71ebdd Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Mon, 26 May 2014 18:03:21 +0100 Subject: [PATCH] Bump version number. --- CMakeLists.txt | 2 +- config.mk | 2 +- installer/mosquitto-cygwin.nsi | 2 +- installer/mosquitto.nsi | 2 +- lib/mosquitto.h | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 30d6f598..48665fd6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ project(mosquitto) cmake_minimum_required(VERSION 2.6) -set (VERSION 1.3.1) +set (VERSION 1.4) if (WIN32) execute_process(COMMAND cmd /c echo %DATE% %TIME% OUTPUT_VARIABLE TIMESTAMP diff --git a/config.mk b/config.mk index 99b73486..909960c3 100644 --- a/config.mk +++ b/config.mk @@ -86,7 +86,7 @@ WITH_DOCS:=yes # Also bump lib/mosquitto.h, lib/python/setup.py, CMakeLists.txt, # installer/mosquitto.nsi, installer/mosquitto-cygwin.nsi -VERSION=1.3.1 +VERSION=1.4 TIMESTAMP:=$(shell date "+%F %T%z") # Client library SO version. Bump if incompatible API/ABI changes are made. diff --git a/installer/mosquitto-cygwin.nsi b/installer/mosquitto-cygwin.nsi index c79c3cd2..d65d1361 100644 --- a/installer/mosquitto-cygwin.nsi +++ b/installer/mosquitto-cygwin.nsi @@ -7,7 +7,7 @@ !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' Name "mosquitto" -!define VERSION 1.3.1 +!define VERSION 1.4 OutFile "mosquitto-${VERSION}-install-cygwin.exe" InstallDir "$PROGRAMFILES\mosquitto" diff --git a/installer/mosquitto.nsi b/installer/mosquitto.nsi index 30db4e28..094bdf6a 100644 --- a/installer/mosquitto.nsi +++ b/installer/mosquitto.nsi @@ -7,7 +7,7 @@ !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' Name "mosquitto" -!define VERSION 1.3.1 +!define VERSION 1.4 OutFile "mosquitto-${VERSION}-install-win32.exe" InstallDir "$PROGRAMFILES\mosquitto" diff --git a/lib/mosquitto.h b/lib/mosquitto.h index 27535929..f2fed9c0 100644 --- a/lib/mosquitto.h +++ b/lib/mosquitto.h @@ -44,8 +44,8 @@ extern "C" { #endif #define LIBMOSQUITTO_MAJOR 1 -#define LIBMOSQUITTO_MINOR 3 -#define LIBMOSQUITTO_REVISION 1 +#define LIBMOSQUITTO_MINOR 4 +#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)