Skip to content

Commit 3e47c48

Browse files
committed
Release 1.3.2
1 parent 6fc1999 commit 3e47c48

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,7 @@
4848
## 1.3.1
4949

5050
- 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)
51+
52+
## 1.3.2
53+
54+
- Performance and code conciseness improvements

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.1
7+
VERSION 1.3.2
88
LANGUAGES C CXX
99
)
1010

lfbb/inc/lfbb.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
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.1
8-
* @date 21. September 2022
7+
* @version 1.3.2
8+
* @date 6. June 2023
99
* @author Djordje Nedic
1010
**************************************************************/
1111

@@ -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.1
40+
* Version: 1.3.2
4141
**************************************************************/
4242

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

lfbb/src/lfbb.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
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.1
8-
* @date 21. September 2022
7+
* @version 1.3.2
8+
* @date 6. June 2023
99
* @author Djordje Nedic
1010
**************************************************************/
1111

@@ -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.1
40+
* Version: 1.3.2
4141
**************************************************************/
4242

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

0 commit comments

Comments
 (0)