Skip to content

Commit

Permalink
Start 3.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Jun 22, 2024
1 parent 9baa707 commit 2b53a83
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## Develop

## v3.2.0

- Add user argument option
- Improve the variable names to better conform *LLVM* tidy config

## v3.1.0

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

## v3.1.0-RC1
## v3.0.0-RC1

- Split CMakeLists.txt files between library and executable
- Change license year to 2022
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "LwRB",
"version": "3.1.0",
"version": "3.2.0",
"description": "Lightweight general purpose ring buffer with optimizations for embedded systems",
"keywords": "buffer, ring buffer, library, rb, cyclic",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion lwrb/src/include/lwrb/lwrb.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwRB - Lightweight ring buffer library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v3.1.0
* Version: v3.2.0
*/
#ifndef LWRB_HDR_H
#define LWRB_HDR_H
Expand Down
2 changes: 1 addition & 1 deletion lwrb/src/lwrb/lwrb.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwRB - Lightweight ring buffer library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v3.1.0
* Version: v3.2.0
*/
#include "lwrb/lwrb.h"

Expand Down
2 changes: 1 addition & 1 deletion lwrb/src/lwrb/lwrb_ex.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwRB - Lightweight ring buffer library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v3.1.0
* Version: v3.2.0
*/
#include "lwrb/lwrb.h"

Expand Down

0 comments on commit 2b53a83

Please sign in to comment.