Bump version number.

This commit is contained in:
Roger A. Light 2018-05-02 22:33:05 +01:00
parent e90a32835b
commit 84520296fa
7 changed files with 9 additions and 9 deletions

View File

@ -11,7 +11,7 @@ project(mosquitto)
cmake_minimum_required(VERSION 2.8)
# Only for version 3 and up. cmake_policy(SET CMP0042 NEW)
set (VERSION 1.4.90)
set (VERSION 1.5.0)
add_definitions (-DCMAKE -DVERSION=\"${VERSION}\")

View File

@ -1,4 +1,4 @@
1.5 - 2018xxxx
1.5 - 20180502
==============
Security:

View File

@ -99,7 +99,7 @@ WITH_EPOLL:=yes
# Also bump lib/mosquitto.h, CMakeLists.txt,
# installer/mosquitto.nsi, installer/mosquitto64.nsi
VERSION=1.4.90
VERSION=1.5.0
# Client library SO version. Bump if incompatible API/ABI changes are made.
SOVERSION=1

View File

@ -9,7 +9,7 @@
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "mosquitto"
!define VERSION 1.4.90
!define VERSION 1.5.0
OutFile "mosquitto-${VERSION}-install-windows-x86.exe"
InstallDir "$PROGRAMFILES\mosquitto"

View File

@ -9,7 +9,7 @@
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "mosquitto"
!define VERSION 1.4.90
!define VERSION 1.5.0
OutFile "mosquitto-${VERSION}-install-windows-x64.exe"
!include "x64.nsh"

View File

@ -46,8 +46,8 @@ extern "C" {
#include <stddef.h>
#define LIBMOSQUITTO_MAJOR 1
#define LIBMOSQUITTO_MINOR 4
#define LIBMOSQUITTO_REVISION 90
#define LIBMOSQUITTO_MINOR 5
#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)

View File

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