1
0
mirror of https://github.com/eclipse/paho.mqtt.cpp.git synced 2025-05-09 03:11:23 +08:00

Bumped version to v1.5 prerelease

This commit is contained in:
fpagliughi 2024-06-18 14:14:00 -04:00
parent a588b29bc4
commit f6a3431adb
2 changed files with 6 additions and 6 deletions

View File

@ -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 ---

View File

@ -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