Bump version number, add web post.

This commit is contained in:
Roger A. Light 2021-01-28 12:29:45 +00:00
parent 2749b8c5b8
commit 53b7cc5fc1
9 changed files with 70 additions and 11 deletions

View File

@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.0)
cmake_policy(SET CMP0042 NEW)
project(mosquitto)
set (VERSION 2.0.5)
set (VERSION 2.0.6)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/")

View File

@ -127,7 +127,7 @@ WITH_XTREPORT=no
# Also bump lib/mosquitto.h, CMakeLists.txt,
# installer/mosquitto.nsi, installer/mosquitto64.nsi
VERSION=2.0.5
VERSION=2.0.6
# Client library SO version. Bump if incompatible API/ABI changes are made.
SOVERSION=1

View File

@ -66,7 +66,7 @@ extern "C" {
#define LIBMOSQUITTO_MAJOR 2
#define LIBMOSQUITTO_MINOR 0
#define LIBMOSQUITTO_REVISION 5
#define LIBMOSQUITTO_REVISION 6
/* 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

@ -9,7 +9,7 @@
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "Eclipse Mosquitto"
!define VERSION 2.0.5
!define VERSION 2.0.6
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 "Eclipse Mosquitto"
!define VERSION 2.0.5
!define VERSION 2.0.6
OutFile "mosquitto-${VERSION}-install-windows-x64.exe"
!include "x64.nsh"

View File

@ -2,7 +2,7 @@
MAJOR=2
MINOR=0
REVISION=5
REVISION=6
sed -i "s/^VERSION=.*/VERSION=${MAJOR}.${MINOR}.${REVISION}/" config.mk

View File

@ -1,5 +1,5 @@
name: mosquitto
version: 2.0.5
version: 2.0.6
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.

View File

@ -1,7 +1,7 @@
<!--
.. title: Download
.. slug: download
.. date: 2021-01-11 10:29:38 UTC
.. date: 2021-01-28 12:24:38 UTC
.. tags: tag
.. category: category
.. link: link
@ -11,7 +11,7 @@
# Source
* [mosquitto-2.0.5.tar.gz](https://mosquitto.org/files/source/mosquitto-2.0.5.tar.gz) (319kB) ([GPG signature](https://mosquitto.org/files/source/mosquitto-2.0.5.tar.gz.asc))
* [mosquitto-2.0.6.tar.gz](https://mosquitto.org/files/source/mosquitto-2.0.6.tar.gz) (319kB) ([GPG signature](https://mosquitto.org/files/source/mosquitto-2.0.6.tar.gz.asc))
* [Git source code repository](https://github.com/eclipse/mosquitto) (github.com)
Older downloads are available at [https://mosquitto.org/files/](../files/)
@ -24,8 +24,8 @@ distributions.
## Windows
* [mosquitto-2.0.5-install-windows-x64.exe](https://mosquitto.org/files/binary/win64/mosquitto-2.0.5-install-windows-x64.exe) (64-bit build, Windows Vista and up, built with Visual Studio Community 2019)
* [mosquitto-2.0.5-install-windows-x32.exe](https://mosquitto.org/files/binary/win32/mosquitto-2.0.5-install-windows-x86.exe) (32-bit build, Windows Vista and up, built with Visual Studio Community 2019)
* [mosquitto-2.0.6-install-windows-x64.exe](https://mosquitto.org/files/binary/win64/mosquitto-2.0.6-install-windows-x64.exe) (64-bit build, Windows Vista and up, built with Visual Studio Community 2019)
* [mosquitto-2.0.6-install-windows-x32.exe](https://mosquitto.org/files/binary/win32/mosquitto-2.0.6-install-windows-x86.exe) (32-bit build, Windows Vista and up, built with Visual Studio Community 2019)
Older installers can be found at [https://mosquitto.org/files/binary/](https://mosquitto.org/files/binary/).

View File

@ -0,0 +1,59 @@
<!--
.. title: Version 2.0.6 released.
.. slug: version-2-0-6-released
.. date: 2021-01-28 12:24:38 UTC
.. tags: Releases
.. category:
.. link:
.. description:
.. type: text
-->
Version 2.0.6 of Mosquitto has been released. This is a bugfix release.
# Broker
- Fix calculation of remaining length parameter for websockets clients that
send fragmented packets. Closes [#1974].
- Fix potential duplicate Will messages being sent when a will delay interval
has been set.
- Fix message expiry interval property not being honoured in
`mosquitto_broker_publish` and `mosquitto_broker_publish_copy`.
- Fix websockets listeners with TLS not responding. Closes [#2020].
- Add notes that libsystemd-dev or similar is needed if building with systemd
support. Closes [#2019].
- Improve logging in obscure cases when a client disconnects. Closes [#2017].
- Fix reloading of listeners where multiple listeners have been defined with
the same port but different bind addresses. Closes [#2029].
- Fix `message_size_limit` not applying to the Will payload. Closes [#2022].
- The error topic-alias-invalid was being sent if an MQTT v5 client published
a message with empty topic and topic alias set, but the topic alias hadn't
already been configured on the broker. This has been fixed to send a
protocol error, as per section 3.3.4 of the specification.
- Note in the man pages that SIGHUP reloads TLS certificates. Closes [#2037].
- Fix bridges not always connecting on Windows. Closes [#2043].
# Apps
- Allow command line arguments to override config file options in
mosquitto_ctrl. Closes [#2010].
- mosquitto_ctrl: produce an error when requesting a new password if both
attempts do not match. Closes [#2011].
# Build
- Fix cmake builds using `WITH_CJSON=no` not working if cJSON not found.
Closes [#2026].
# Other
- The SPDX identifiers for EDL-1.0 have been changed to BSD-3-Clause as per
The Eclipse legal documentation generator. The licenses are identical.
[#1974]: https://github.com/eclipse/mosquitto/issues/1974
[#2010]: https://github.com/eclipse/mosquitto/issues/2010
[#2011]: https://github.com/eclipse/mosquitto/issues/2011
[#2017]: https://github.com/eclipse/mosquitto/issues/2017
[#2019]: https://github.com/eclipse/mosquitto/issues/2019
[#2020]: https://github.com/eclipse/mosquitto/issues/2020
[#2022]: https://github.com/eclipse/mosquitto/issues/2022
[#2026]: https://github.com/eclipse/mosquitto/issues/2026
[#2029]: https://github.com/eclipse/mosquitto/issues/2029
[#2037]: https://github.com/eclipse/mosquitto/issues/2037
[#2043]: https://github.com/eclipse/mosquitto/issues/2043