Skip to content

Commit 03395cc

Browse files
author
camilo
committed
bump to 1.2.9
1 parent 50857e4 commit 03395cc

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

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.2.8",
19+
"version": "1.2.9",
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.2.8
2+
version=1.2.9
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.2.8
3+
VERSION 1.2.9
44
DESCRIPTION "A collection of useful C++ libraries for embedded systems"
55
LANGUAGES CXX )
66

src/include/algorithm.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ namespace qlibs {
345345
* @return @c none.
346346
*/
347347
template<typename T, size_t n>
348-
inline bool replace_if( T ( &array )[ n ],
348+
inline void replace_if( T ( &array )[ n ],
349349
bool (*pred)( const T& ),
350350
const T& new_value,
351351
const size_t first = 0U,

src/qlibs.h

Lines changed: 3 additions & 3 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.2.8
4+
* @version 1.2.9
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.2.8"
45-
#define QLIBS_CPP_VERNUM ( 128U )
44+
#define QLIBS_CPP_VERSION "1.2.9"
45+
#define QLIBS_CPP_VERNUM ( 129U )
4646
#define QLIBS_CPP_CAPTION "qLibs++" QLIBS_CPP_VERSION
4747

4848
#include <include/qlibs_types.hpp>

0 commit comments

Comments
 (0)