Skip to content

Commit

Permalink
bump to 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
camilo committed Jun 7, 2024
1 parent c0c2a8b commit f96a6e4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion doc/Doxygen
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "OS"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v1.6.1
PROJECT_NUMBER = v1.6.2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"maintainer": true
}
],
"version": "1.6.1",
"version": "1.6.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*"
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=QuarkTS
version=1.6.1
version=1.6.2
license=MIT
author=J. Camilo Gomez C. <kmilo17pet@gmail.com>
maintainer=J. Camilo Gomez C. <kmilo17pet@gmail.com>
Expand Down
10 changes: 5 additions & 5 deletions src/QuarkTS.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* @file QuarkTS.h
* @author J. Camilo Gomez C.
* @version 1.6.0
* @version 1.6.2
* @note This file is part of the QuarkTS++ distribution.
* @brief Global inclusion header
**/
Expand Down Expand Up @@ -41,8 +41,8 @@ This file is part of the QuarkTS++ OS distribution.
#ifndef QOS_CPP_H
#define QOS_CPP_H

#define QUARKTS_CPP_VERSION "1.6.1"
#define QUARKTS_CPP_VERNUM ( 161u )
#define QUARKTS_CPP_VERSION "1.6.2"
#define QUARKTS_CPP_VERNUM ( 162u )
#define QUARKTS_CPP_CAPTION "QuarkTS++ OS " QUARKTS_CPP_VERSION

#include "config/config.h"
Expand Down Expand Up @@ -70,7 +70,7 @@ namespace qOS {
constexpr const uint8_t number = QUARKTS_CPP_VERNUM;
constexpr const uint8_t mayor = 1U;
constexpr const uint8_t minor = 6U;
constexpr const uint8_t rev = 1U;
constexpr const uint8_t rev = 2U;
}
namespace product {
constexpr const char* author = "J. Camilo Gomez C.";
Expand All @@ -84,7 +84,7 @@ namespace qOS {
}

namespace build {
constexpr const uint32_t number = 4125;
constexpr const uint32_t number = 4126;
constexpr const char* date = __DATE__;
constexpr const char* time = __TIME__;
constexpr const char* std = "c++11";
Expand Down
2 changes: 1 addition & 1 deletion src/include/input.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ namespace qOS {
* @param[in] t The value of the timeout.
* @return @c true on success. Otherwise @c false.
*/
bool setTime( const event e, const qOS::duration_t t ) noexcept = 0;
bool setTime( const event e, const qOS::duration_t t ) noexcept override;
/**
* @brief Set the parameter for the specified event.
* @param[in] e The event where the timeout will be set.
Expand Down

0 comments on commit f96a6e4

Please sign in to comment.