Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
cobalt
external_mosquitto
Commits
d71db835
Commit
d71db835
authored
9 years ago
by
Roger A. Light
Browse files
Options
Download
Email Patches
Plain Diff
Bump version number.
parent
201bb1a0
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
5 deletions
+8
-5
CMakeLists.txt
CMakeLists.txt
+1
-1
ChangeLog.txt
ChangeLog.txt
+3
-0
config.mk
config.mk
+1
-1
installer/mosquitto-cygwin.nsi
installer/mosquitto-cygwin.nsi
+1
-1
installer/mosquitto.nsi
installer/mosquitto.nsi
+1
-1
lib/mosquitto.h
lib/mosquitto.h
+1
-1
No files found.
CMakeLists.txt
View file @
d71db835
...
...
@@ -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.
2
)
set
(
VERSION 1.4.
3
)
if
(
WIN32
)
execute_process
(
COMMAND cmd /c echo %DATE% %TIME% OUTPUT_VARIABLE TIMESTAMP
...
...
This diff is collapsed.
Click to expand it.
ChangeLog.txt
View file @
d71db835
1.4.3 - 20150818
================
Broker:
- Fix incorrect bridge notification on initial connection. Closes #467096.
- Build fixes for OpenBSD.
...
...
This diff is collapsed.
Click to expand it.
config.mk
View file @
d71db835
...
...
@@ -83,7 +83,7 @@ WITH_SOCKS:=yes
# Also bump lib/mosquitto.h, CMakeLists.txt,
# installer/mosquitto.nsi, installer/mosquitto-cygwin.nsi
VERSION
=
1.4.
2
VERSION
=
1.4.
3
TIMESTAMP
:=
$(
shell
date
"+%F %T%z"
)
# Client library SO version. Bump if incompatible API/ABI changes are made.
...
...
This diff is collapsed.
Click to expand it.
installer/mosquitto-cygwin.nsi
View file @
d71db835
...
...
@@ -7,7 +7,7 @@
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "mosquitto"
!define VERSION 1.4.
2
!define VERSION 1.4.
3
OutFile "mosquitto-${VERSION}-install-cygwin.exe"
InstallDir "$PROGRAMFILES\mosquitto"
...
...
This diff is collapsed.
Click to expand it.
installer/mosquitto.nsi
View file @
d71db835
...
...
@@ -9,7 +9,7 @@
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "mosquitto"
!define VERSION 1.4.
2
!define VERSION 1.4.
3
OutFile "mosquitto-${VERSION}-install-win32.exe"
InstallDir "$PROGRAMFILES\mosquitto"
...
...
This diff is collapsed.
Click to expand it.
lib/mosquitto.h
View file @
d71db835
...
...
@@ -45,7 +45,7 @@ extern "C" {
#define LIBMOSQUITTO_MAJOR 1
#define LIBMOSQUITTO_MINOR 4
#define LIBMOSQUITTO_REVISION
2
#define LIBMOSQUITTO_REVISION
3
/* 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)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment