Skip to content

Commit 7645973

Browse files
committed
Merge branch 'develop'
2 parents 3205198 + ff3a721 commit 7645973

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Develop
44

5+
## v2.0.3
6+
7+
- Add `library.json` for Platform.IO
8+
59
## v2.0.2
610

711
- Add `volatile` keyword to all local variables to ensure thread safety in highest optimization

library.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "LwRB",
3+
"version": "2.0.2",
4+
"description": "Lightweight general purpose ring buffer with optimizations for embedded systems",
5+
"keywords": "buffer, ring buffer, library, rb, cyclic",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/MaJerle/lwrb.git"
9+
},
10+
"authors": [
11+
{
12+
"name": "Tilen Majerle",
13+
"email": "[email protected]",
14+
"url": "https://majerle.eu"
15+
}
16+
],
17+
"license": "MIT",
18+
"homepage": "https://github.com/MaJerle/lwrb",
19+
"dependencies": {
20+
21+
},
22+
"frameworks": "*",
23+
"platforms": "*"
24+
}

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.2
32+
* Version: v2.0.3
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.2
32+
* Version: v2.0.3
3333
*/
3434
#include "lwrb/lwrb.h"
3535

0 commit comments

Comments
 (0)