Skip to content

Commit

Permalink
bump to 1.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
camilo committed Mar 6, 2024
1 parent 50857e4 commit 03395cc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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.2.8",
"version": "1.2.9",
"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.2.8
version=1.2.9
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.2.8
VERSION 1.2.9
DESCRIPTION "A collection of useful C++ libraries for embedded systems"
LANGUAGES CXX )

Expand Down
2 changes: 1 addition & 1 deletion src/include/algorithm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ namespace qlibs {
* @return @c none.
*/
template<typename T, size_t n>
inline bool replace_if( T ( &array )[ n ],
inline void replace_if( T ( &array )[ n ],
bool (*pred)( const T& ),
const T& new_value,
const size_t first = 0U,
Expand Down
6 changes: 3 additions & 3 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.2.8
* @version 1.2.9
* @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.2.8"
#define QLIBS_CPP_VERNUM ( 128U )
#define QLIBS_CPP_VERSION "1.2.9"
#define QLIBS_CPP_VERNUM ( 129U )
#define QLIBS_CPP_CAPTION "qLibs++" QLIBS_CPP_VERSION

#include <include/qlibs_types.hpp>
Expand Down

0 comments on commit 03395cc

Please sign in to comment.