Skip to content

Commit

Permalink
Release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DNedic committed Jun 5, 2023
1 parent 6fc1999 commit 3e47c48
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@
## 1.3.1

- 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)

## 1.3.2

- Performance and code conciseness improvements
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.16)

project(lfbb
VERSION 1.3.1
VERSION 1.3.2
LANGUAGES C CXX
)

Expand Down
6 changes: 3 additions & 3 deletions lfbb/inc/lfbb.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.1
* @date 21. September 2022
* @version 1.3.2
* @date 6. June 2023
* @author Djordje Nedic
**************************************************************/

Expand Down Expand Up @@ -37,7 +37,7 @@
* This file is part of LFBB - Lock Free Bipartite Buffer
*
* Author: Djordje Nedic <[email protected]>
* Version: 1.3.1
* Version: 1.3.2
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
6 changes: 3 additions & 3 deletions lfbb/src/lfbb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.1
* @date 21. September 2022
* @version 1.3.2
* @date 6. June 2023
* @author Djordje Nedic
**************************************************************/

Expand Down Expand Up @@ -37,7 +37,7 @@
* This file is part of LFBB - Lock Free Bipartite Buffer
*
* Author: Djordje Nedic <[email protected]>
* Version: 1.3.1
* Version: 1.3.2
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down

0 comments on commit 3e47c48

Please sign in to comment.