Skip to content

Commit

Permalink
bump to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
camilo committed Nov 20, 2024
1 parent a778b79 commit 6958308
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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.3.2",
"version": "1.3.3",
"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=qlibs
version=1.3.2
version=1.3.3
license=MIT
author=J. Camilo Gomez C. <[email protected]>
maintainer=J. Camilo Gomez C. <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required( VERSION 3.2 )
project( qlibs-cpp
VERSION 1.3.2
VERSION 1.3.3
DESCRIPTION "A collection of useful C++ libraries for embedded systems"
LANGUAGES CXX )

Expand Down
10 changes: 5 additions & 5 deletions src/qlibs.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* @file qlibs.h
* @author J. Camilo Gomez C.
* @version 1.3.1
* @version 1.3.3
* @note This file is part of the qlibs++ distribution.
* @brief Global inclusion header
**/
Expand Down Expand Up @@ -41,8 +41,8 @@ This file is part of the QuarkTS++ OS distribution.
#ifndef QLIBS_CPP_H
#define QLIBS_CPP_H

#define QLIBS_CPP_VERSION "1.3.2"
#define QLIBS_CPP_VERNUM ( 132 )
#define QLIBS_CPP_VERSION "1.3.3"
#define QLIBS_CPP_VERNUM ( 133 )
#define QLIBS_CPP_CAPTION "qLibs++" QLIBS_CPP_VERSION

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

namespace qlibs {
namespace build {
constexpr const uint32_t number = 2351;
constexpr const uint32_t number = 2363;
constexpr const char* date = __DATE__;
constexpr const char* time = __TIME__;
constexpr const char* std = "c++11";
Expand All @@ -72,7 +72,7 @@ This file is part of the QuarkTS++ OS distribution.
constexpr const uint8_t number = QLIBS_CPP_VERNUM;
constexpr const uint8_t mayor = 1U;
constexpr const uint8_t minor = 3U;
constexpr const uint8_t rev = 2U;
constexpr const uint8_t rev = 3U;
}
namespace product {
constexpr const char* author = "J. Camilo Gomez C.";
Expand Down

0 comments on commit 6958308

Please sign in to comment.