Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
DNedic committed Sep 21, 2022
1 parent 0de5ca0 commit d225fe5
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -39,4 +39,8 @@

## 1.2.2

- Improved performance by using a write_wrapped flag instead of infering write wraps
- Improved performance by using a write_wrapped flag instead of infering write wraps

## 1.3.0

- Set ```LFBB_MULTICORE_HOSTED``` to ```false``` by default. This is a more embedded-friendly configuration which doesn't impact hosted platforms performance significantly if the library is left unconfigured but avoids wasting space on embedded devices. When using the library on hosted platforms passing ```LFBB_MULTICORE_HOSTED``` as ```true``` is now advised for maximum performance.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.16)

project(lfbb
VERSION 1.2.2
VERSION 1.3.0
LANGUAGES C CXX
)

6 changes: 3 additions & 3 deletions lfbb/inc/lfbb.h
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@
* c11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.2.2
* @date 19. September 2022
* @version 1.3.0
* @date 21. September 2022
* @author Djordje Nedic
**************************************************************/

@@ -37,7 +37,7 @@
* This file is part of LFBB - Lock Free Bipartite Buffer
*
* Author: Djordje Nedic <nedic.djordje2@gmail.com>
* Version: 1.2.2
* Version: 1.3.0
**************************************************************/

/************************** INCLUDE ***************************/
6 changes: 3 additions & 3 deletions lfbb/src/lfbb.c
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@
* c11 suitable for both low-end microcontrollers all the way
* to HPC machines. Lock-free for single consumer single
* producer scenarios.
* @version 1.2.2
* @date 19. September 2022
* @version 1.3.0
* @date 21. September 2022
* @author Djordje Nedic
**************************************************************/

@@ -37,7 +37,7 @@
* This file is part of LFBB - Lock Free Bipartite Buffer
*
* Author: Djordje Nedic <nedic.djordje2@gmail.com>
* Version: 1.2.2
* Version: 1.3.0
**************************************************************/

/************************** INCLUDE ***************************/

0 comments on commit d225fe5

Please sign in to comment.