From f6a3431adb809c3d2cfcddb4fc77c3f79be5e7cc Mon Sep 17 00:00:00 2001 From: fpagliughi Date: Tue, 18 Jun 2024 14:14:00 -0400 Subject: [PATCH] Bumped version to v1.5 prerelease --- CMakeLists.txt | 4 ++-- include/mqtt/async_client.h | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1155844..5283354 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,8 +5,8 @@ #******************************************************************************* # This is part of the Paho MQTT C++ client library. # +# Copyright (c) 2017-2024, Frank Pagliughi # Copyright (c) 2016-2017, Guilherme Maciel Ferreira -# Copyright (c) 2017-2023, Frank Pagliughi # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v2.0 @@ -24,7 +24,7 @@ cmake_minimum_required(VERSION 3.5) -project(PahoMqttCpp VERSION "1.4.0") +project(PahoMqttCpp VERSION "1.5.0.1") ## --- Build options --- diff --git a/include/mqtt/async_client.h b/include/mqtt/async_client.h index 4d292b9..2fda467 100644 --- a/include/mqtt/async_client.h +++ b/include/mqtt/async_client.h @@ -54,16 +54,16 @@ namespace mqtt { #if defined(PAHO_MQTTPP_VERSIONS) /** The version number for the client library. */ - const uint32_t PAHO_MQTTPP_VERSION = 0x01040000; + const uint32_t PAHO_MQTTPP_VERSION = 0x01050000; /** The version string for the client library */ - const string PAHO_MQTTPP_VERSION_STR("Paho MQTT C++ (mqttpp) v. 1.4.0"); + const string PAHO_MQTTPP_VERSION_STR("Paho MQTT C++ (mqttpp) v. 1.5.0"); /** Copyright notice for the client library */ const string PAHO_MQTTPP_COPYRIGHT("Copyright (c) 2013-2024 Frank Pagliughi"); #else /** The version number for the client library. */ - const uint32_t VERSION = 0x01040000; + const uint32_t VERSION = 0x01050000; /** The version string for the client library */ - const string VERSION_STR("Paho MQTT C++ (mqttpp) v. 1.4.0"); + const string VERSION_STR("Paho MQTT C++ (mqttpp) v. 1.5.0"); /** Copyright notice for the client library */ const string COPYRIGHT("Copyright (c) 2013-2024 Frank Pagliughi"); #endif