Skip to content

Commit 4691652

Browse files
committed
Bumped verion strings to v1.3.1
1 parent 4ef3cdb commit 4691652

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ All notable changes to this project will be documented in this file.
66

77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9-
## [Version 1.3.0](https://github.com/eclipse/paho.mqtt.cpp/compare/v1.2.0..v1.3.0) - (2023-12-29)
9+
10+
## [Version 1.3.1](https://github.com/eclipse/paho.mqtt.cpp/compare/v1.3.0..v1.3.1) - (2023-11-23)
11+
12+
- [#462](https://github.com/eclipse/paho.mqtt.cpp/pull/462) Fix version string for version v1.3.x
13+
14+
15+
## [Version 1.3.0](https://github.com/eclipse/paho.mqtt.cpp/compare/v1.2.0..v1.3.0) - (2023-11-22)
1016

1117
- Fixed building and using library as DLL on Windows with MSVC
1218
- Updated License to Eclipse Public License v2.0

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# This is part of the Paho MQTT C++ client library.
77
#
88
# Copyright (c) 2016-2017, Guilherme Maciel Ferreira
9-
# Copyright (c) 2017, Frank Pagliughi
9+
# Copyright (c) 2017-2023, Frank Pagliughi
1010
#
1111
# All rights reserved. This program and the accompanying materials
1212
# are made available under the terms of the Eclipse Public License v2.0
@@ -29,7 +29,7 @@ cmake_minimum_required(VERSION 3.5)
2929

3030
## project name
3131
project("paho-mqtt-cpp"
32-
VERSION "1.3.0"
32+
VERSION "1.3.1"
3333
LANGUAGES CXX
3434
)
3535

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ To keep up with the latest announcements for this project, or to ask questions:
3434
**Email:** [Eclipse Paho Mailing List](https://accounts.eclipse.org/mailing-list/paho-dev)
3535

3636

37+
### What's New in v1.3.1
38+
39+
- [#462](https://github.com/eclipse/paho.mqtt.cpp/pull/462) Fix version string for version v1.3.x
40+
3741
### What's New in v1.3.0
3842

3943
The first new release in a while! It's primarily a bug-fix release, but has a few minor new features. The full list is here:

src/mqtt/async_client.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,18 @@ namespace mqtt {
5454

5555
#if defined(PAHO_MQTTPP_VERSIONS)
5656
/** The version number for the client library. */
57-
const uint32_t PAHO_MQTTPP_VERSION = 0x01020000;
57+
const uint32_t PAHO_MQTTPP_VERSION = 0x01030001;
5858
/** The version string for the client library */
59-
const string PAHO_MQTTPP_VERSION_STR("Paho MQTT C++ (mqttpp) v. 1.2");
59+
const string PAHO_MQTTPP_VERSION_STR("Paho MQTT C++ (mqttpp) v. 1.3.1");
6060
/** Copyright notice for the client library */
61-
const string PAHO_MQTTPP_COPYRIGHT("Copyright (c) 2013-2020 Frank Pagliughi");
61+
const string PAHO_MQTTPP_COPYRIGHT("Copyright (c) 2013-2023 Frank Pagliughi");
6262
#else
6363
/** The version number for the client library. */
64-
const uint32_t VERSION = 0x01020000;
64+
const uint32_t VERSION = 0x01030001;
6565
/** The version string for the client library */
66-
const string VERSION_STR("Paho MQTT C++ (mqttpp) v. 1.2");
66+
const string VERSION_STR("Paho MQTT C++ (mqttpp) v. 1.3.1");
6767
/** Copyright notice for the client library */
68-
const string COPYRIGHT("Copyright (c) 2013-2020 Frank Pagliughi");
68+
const string COPYRIGHT("Copyright (c) 2013-2023 Frank Pagliughi");
6969
#endif
7070

7171
/////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)