Skip to content

Commit c7fe6fd

Browse files
committed
Version 3.1.0
1 parent 2e52cd1 commit c7fe6fd

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,22 @@
22

33
## Develop
44

5+
## v3.1.0
6+
57
- Preparation for `v3.1`
68
- Replace `size_t` with custom defined type `lwrb_sz_t` which matches atomicity requirements
79
- `lwrb_sz_t` is by default typedef-ed as `unsigned long`
810
- Prepare `lwrb_write_ex` and `lwrb_read_ex` functions
911
- Implement `lwrb_write_ex` and `lwrb_read_ex` functions
12+
- Fix `_ex` module throwing an error for Platform.IO
1013

1114
## v3.0.0
1215

1316
- Added macros for optional STDATOMIC. Global `-DLWRB_DISABLE_ATOMIC` macro will disable C11 `<stdatomic.h>` functionality.
1417
- Add `lwrb_move` and `lwrb_overwrite`
1518
- Fix `lwrb_find` which failed to properly search for tokens at corner cases
1619

17-
## v3.0.0-RC1
20+
## v3.1.0-RC1
1821

1922
- Split CMakeLists.txt files between library and executable
2023
- Change license year to 2022

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "LwRB",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"description": "Lightweight general purpose ring buffer with optimizations for embedded systems",
55
"keywords": "buffer, ring buffer, library, rb, cyclic",
66
"repository": {

lwrb/src/include/lwrb/lwrb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* This file is part of LwRB - Lightweight ring buffer library.
3030
*
3131
* Author: Tilen MAJERLE <[email protected]>
32-
* Version: v3.0.0-rc1
32+
* Version: v3.1.0
3333
*/
3434
#ifndef LWRB_HDR_H
3535
#define LWRB_HDR_H

lwrb/src/lwrb/lwrb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* This file is part of LwRB - Lightweight ring buffer library.
3030
*
3131
* Author: Tilen MAJERLE <[email protected]>
32-
* Version: v3.0.0
32+
* Version: v3.1.0
3333
*/
3434
#include "lwrb/lwrb.h"
3535

lwrb/src/lwrb/lwrb_ex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* This file is part of LwRB - Lightweight ring buffer library.
3030
*
3131
* Author: Tilen MAJERLE <[email protected]>
32-
* Version: v3.0.0-rc1
32+
* Version: v3.1.0
3333
*/
3434
#include "lwrb/lwrb.h"
3535

0 commit comments

Comments
 (0)