Skip to content

Commit 21dcd47

Browse files
committed
Release 1.3.1
1 parent 23df53e commit 21dcd47

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,7 @@
4444
## 1.3.0
4545

4646
- 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.
47+
48+
## 1.3.1
49+
50+
- A critical bug where valid data would be invalidated if the write ended exactly on the end of the buffer was fixed - [@KOLANICH](https://github.com/KOLANICH) in [lfbb_cpp](https://github.com/DNedic/lfbb_cpp)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
cmake_minimum_required(VERSION 3.16)
55

66
project(lfbb
7-
VERSION 1.3.0
7+
VERSION 1.3.1
88
LANGUAGES C CXX
99
)
1010

lfbb/inc/lfbb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* c11 suitable for both low-end microcontrollers all the way
55
* to HPC machines. Lock-free for single consumer single
66
* producer scenarios.
7-
* @version 1.3.0
7+
* @version 1.3.1
88
* @date 21. September 2022
99
* @author Djordje Nedic
1010
**************************************************************/
@@ -37,7 +37,7 @@
3737
* This file is part of LFBB - Lock Free Bipartite Buffer
3838
*
3939
* Author: Djordje Nedic <nedic.djordje2@gmail.com>
40-
* Version: 1.3.0
40+
* Version: 1.3.1
4141
**************************************************************/
4242

4343
/************************** INCLUDE ***************************/

lfbb/src/lfbb.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* c11 suitable for both low-end microcontrollers all the way
55
* to HPC machines. Lock-free for single consumer single
66
* producer scenarios.
7-
* @version 1.3.0
7+
* @version 1.3.1
88
* @date 21. September 2022
99
* @author Djordje Nedic
1010
**************************************************************/
@@ -37,7 +37,7 @@
3737
* This file is part of LFBB - Lock Free Bipartite Buffer
3838
*
3939
* Author: Djordje Nedic <nedic.djordje2@gmail.com>
40-
* Version: 1.3.0
40+
* Version: 1.3.1
4141
**************************************************************/
4242

4343
/************************** INCLUDE ***************************/

0 commit comments

Comments
 (0)