Skip to content

Commit dbd5f30

Browse files
author
camilo
committed
Bump version to 1.3.8
1 parent d6d2e8a commit dbd5f30

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

doc/stylesheet

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"maintainer": true
1717
}
1818
],
19-
"version": "1.3.7",
19+
"version": "1.3.8",
2020
"license": "MIT",
2121
"frameworks": "arduino",
2222
"platforms": "*"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=qlibs
2-
version=1.3.7
2+
version=1.3.8
33
license=MIT
44
author=J. Camilo Gomez C. <[email protected]>
55
maintainer=J. Camilo Gomez C. <[email protected]>

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required( VERSION 3.2 )
22
project( qlibs-cpp
3-
VERSION 1.3.7
3+
VERSION 1.3.8
44
DESCRIPTION "A collection of useful C++ libraries for embedded systems"
55
LANGUAGES CXX )
66

src/qlibs.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* @file qlibs.h
33
* @author J. Camilo Gomez C.
4-
* @version 1.3.7
4+
* @version 1.3.8
55
* @note This file is part of the qlibs++ distribution.
66
* @brief Global inclusion header
77
**/
@@ -41,8 +41,8 @@ This file is part of the QuarkTS++ OS distribution.
4141
#ifndef QLIBS_CPP_H
4242
#define QLIBS_CPP_H
4343

44-
#define QLIBS_CPP_VERSION "1.3.7"
45-
#define QLIBS_CPP_VERNUM ( 137 )
44+
#define QLIBS_CPP_VERSION "1.3.8"
45+
#define QLIBS_CPP_VERNUM ( 138 )
4646
#define QLIBS_CPP_CAPTION "qLibs++ " QLIBS_CPP_VERSION
4747

4848
#include <include/qlibs_types.hpp>
@@ -62,7 +62,7 @@ This file is part of the QuarkTS++ OS distribution.
6262

6363
namespace qlibs {
6464
namespace build {
65-
constexpr const uint32_t number = 2397;
65+
constexpr const uint32_t number = 2402;
6666
constexpr const char* date = __DATE__;
6767
constexpr const char* time = __TIME__;
6868
constexpr const char* std = "c++11";
@@ -72,7 +72,7 @@ This file is part of the QuarkTS++ OS distribution.
7272
constexpr const uint8_t number = QLIBS_CPP_VERNUM;
7373
constexpr const uint8_t mayor = 1U;
7474
constexpr const uint8_t minor = 3U;
75-
constexpr const uint8_t rev = 7U;
75+
constexpr const uint8_t rev = 8U;
7676
}
7777
namespace product {
7878
constexpr const char* author = "J. Camilo Gomez C.";

0 commit comments

Comments
 (0)