Skip to content

Commit

Permalink
Add version 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Dec 12, 2022
1 parent d652d49 commit a2939a9
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 41 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

## Develop

## 1.6.0

- Split CMakeLists.txt files between library and executable
- Change license year to 2022
- Fix GCC warning for incompatible comparison types
- Update code style with astyle
- Add support for stream parsing - first version
- Add `.clang-format` draft
- Add `.clang-format`
- Add `lwjsonSTREAMDONE` return code when streamer well parsed some JSON and reached end of string
- Add option to reset stream state machine

Expand Down
2 changes: 1 addition & 1 deletion dev/lwjson_opts.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.5.0
* Version: v1.6.0
*/
#ifndef LWJSON_HDR_OPTS_H
#define LWJSON_HDR_OPTS_H
Expand Down
64 changes: 31 additions & 33 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,33 @@
{
"name": "LwJSON",
"version": "1.5.0",
"description": "Lightweight JSON parser for embedded systems with support for inline comments",
"keywords": "json, javascript, lightweight, parser, stm32, manager, library, comment, object, notation, object notation",
"repository": {
"type": "git",
"url": "https://github.com/MaJerle/lwjson.git"
},
"authors": [
{
"name": "Tilen Majerle",
"email": "[email protected]",
"url": "https://majerle.eu"
}
],
"license": "MIT",
"homepage": "https://github.com/MaJerle/lwjson",
"dependencies": {

},
"frameworks": "*",
"platforms": "*",
"export": {
"exclude": [
".github",
"dev",
"docs",
"**/.vs",
"**/Debug",
"build",
"**/build"
]
}
"name": "LwJSON",
"version": "1.6.0",
"description": "Lightweight JSON parser for embedded systems with support for inline comments",
"keywords": "json, javascript, lightweight, parser, stm32, manager, library, comment, object, notation, object notation",
"repository": {
"type": "git",
"url": "https://github.com/MaJerle/lwjson.git"
},
"authors": [
{
"name": "Tilen Majerle",
"email": "[email protected]",
"url": "https://majerle.eu"
}
],
"license": "MIT",
"homepage": "https://github.com/MaJerle/lwjson",
"dependencies": {},
"frameworks": "*",
"platforms": "*",
"export": {
"exclude": [
".github",
"dev",
"docs",
"**/.vs",
"**/Debug",
"build",
"**/build"
]
}
}
2 changes: 1 addition & 1 deletion lwjson/src/include/lwjson/lwjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.5.0
* Version: v1.6.0
*/
#ifndef LWJSON_HDR_H
#define LWJSON_HDR_H
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/include/lwjson/lwjson_opt.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.5.0
* Version: v1.6.0
*/
#ifndef LWJSON_HDR_OPT_H
#define LWJSON_HDR_OPT_H
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/include/lwjson/lwjson_opts_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.5.0
* Version: v1.6.0
*/
#ifndef LWJSON_HDR_OPTS_H
#define LWJSON_HDR_OPTS_H
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/lwjson/lwjson.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.5.0
* Version: v1.6.0
*/
#include <string.h>
#include "lwjson/lwjson.h"
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/lwjson/lwjson_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.5.0
* Version: v1.6.0
*/
#include <stdio.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/lwjson/lwjson_stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.5.0
* Version: v1.6.0
*/
#include <string.h>
#include "lwjson/lwjson.h"
Expand Down

0 comments on commit a2939a9

Please sign in to comment.