Skip to content

Commit bb83f68

Browse files
author
camilo
committed
bump to 1.6.4
1 parent a722098 commit bb83f68

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

doc/Doxygen

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "OS"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v1.6.3
41+
PROJECT_NUMBER = v1.6.4
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

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.6.3",
19+
"version": "1.6.4",
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=QuarkTS
2-
version=1.6.3
2+
version=1.6.4
33
license=MIT
44
author=J. Camilo Gomez C. <kmilo17pet@gmail.com>
55
maintainer=J. Camilo Gomez C. <kmilo17pet@gmail.com>

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( quarkts-cpp
3-
VERSION 1.6.3
3+
VERSION 1.6.4
44
DESCRIPTION "An open-source OS for small embedded applications"
55
LANGUAGES CXX )
66

src/QuarkTS.h

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

44-
#define QUARKTS_CPP_VERSION "1.6.3"
45-
#define QUARKTS_CPP_VERNUM ( 163u )
44+
#define QUARKTS_CPP_VERSION "1.6.4"
45+
#define QUARKTS_CPP_VERNUM ( 164u )
4646
#define QUARKTS_CPP_CAPTION "QuarkTS++ OS " QUARKTS_CPP_VERSION
4747

4848
#include "config/config.h"
@@ -70,7 +70,7 @@ namespace qOS {
7070
constexpr const uint8_t number = QUARKTS_CPP_VERNUM;
7171
constexpr const uint8_t mayor = 1U;
7272
constexpr const uint8_t minor = 6U;
73-
constexpr const uint8_t rev = 3U;
73+
constexpr const uint8_t rev = 4U;
7474
}
7575
namespace product {
7676
constexpr const char* author = "J. Camilo Gomez C.";
@@ -84,7 +84,7 @@ namespace qOS {
8484
}
8585

8686
namespace build {
87-
constexpr const uint32_t number = 4127;
87+
constexpr const uint32_t number = 4128;
8888
constexpr const char* date = __DATE__;
8989
constexpr const char* time = __TIME__;
9090
constexpr const char* std = "c++11";

0 commit comments

Comments
 (0)