Skip to content

Commit 3f70624

Browse files
committed
Set version to 3.0.0-RC1
1 parent 67303a3 commit 3f70624

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
## Develop
44

5+
## v3.0.0-RC1
6+
57
- Split CMakeLists.txt files between library and executable
68
- Change license year to 2022
79
- Update code style with astyle
8-
- Potential compatibility break: Minimum required version is C11, with requirement of `stdatomic.h` library
10+
- Minimum required version is C11, with requirement of `stdatomic.h` library
911

1012
## v2.0.3
1113

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": "2.0.3",
3+
"version": "3.0.0-rc1",
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: v2.0.3
32+
* Version: v3.0.0-rc1
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: v2.0.3
32+
* Version: v3.0.0-rc1
3333
*/
3434
#include "lwrb/lwrb.h"
3535

0 commit comments

Comments
 (0)