Skip to content

Commit 2b53a83

Browse files
committed
Start 3.2.0 release
1 parent 9baa707 commit 2b53a83

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,7 +2,10 @@
22

33
## Develop
44

5+
## v3.2.0
6+
57
- Add user argument option
8+
- Improve the variable names to better conform *LLVM* tidy config
69

710
## v3.1.0
811

@@ -19,7 +22,7 @@
1922
- Add `lwrb_move` and `lwrb_overwrite`
2023
- Fix `lwrb_find` which failed to properly search for tokens at corner cases
2124

22-
## v3.1.0-RC1
25+
## v3.0.0-RC1
2326

2427
- Split CMakeLists.txt files between library and executable
2528
- 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.1.0",
3+
"version": "3.2.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.1.0
32+
* Version: v3.2.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.1.0
32+
* Version: v3.2.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.1.0
32+
* Version: v3.2.0
3333
*/
3434
#include "lwrb/lwrb.h"
3535

0 commit comments

Comments
 (0)