Skip to content

Commit

Permalink
Set version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Mar 1, 2024
1 parent 4c1e7e0 commit 589298e
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 37 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Develop

## v1.3.0

- Split CMakeLists.txt files between library and executable
- Change license year to 2022
- Add `.clang-format` draft
Expand Down
64 changes: 31 additions & 33 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,35 @@
{
"name": "LwPKT",
"version": "1.2.0",
"description": "Lightweight packet protocol library for communication implementation",
"keywords": "lwpkt, packet, protocol, manager, communication, com, lightweight, rs-485, rs-422, rs485, rs422, rs-232, rs232, uart, usart, lpuart",
"repository": {
"type": "git",
"url": "https://github.com/MaJerle/lwpkt.git"
},
"authors": [
{
"name": "Tilen Majerle",
"email": "tilen@majerle.eu",
"url": "https://majerle.eu"
}
],
"license": "MIT",
"homepage": "https://github.com/MaJerle/lwpkt",
"dependencies": {

},
"frameworks": "*",
"platforms": "*",
"export": {
"exclude": [
".github",
"dev",
"docs",
"**/.vs",
"**/Debug",
"build",
"**/build"
]
},
"name": "LwPKT",
"version": "1.3.0",
"description": "Lightweight packet protocol library for communication implementation",
"keywords": "lwpkt, packet, protocol, manager, communication, com, lightweight, rs-485, rs-422, rs485, rs422, rs-232, rs232, uart, usart, lpuart",
"repository": {
"type": "git",
"url": "https://github.com/MaJerle/lwpkt.git"
},
"authors": [
{
"name": "Tilen Majerle",
"email": "tilen@majerle.eu",
"url": "https://majerle.eu"
}
],
"license": "MIT",
"homepage": "https://github.com/MaJerle/lwpkt",
"dependencies": {},
"frameworks": "*",
"platforms": "*",
"export": {
"exclude": [
".github",
"dev",
"docs",
"**/.vs",
"**/Debug",
"build",
"**/build"
]
},
"build": {
"includeDir": "lwpkt/src/include"
}
Expand Down
2 changes: 1 addition & 1 deletion lwpkt/src/include/lwpkt/lwpkt.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwPKT - Lightweight packet protocol library.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.2.0
* Version: v1.3.0
*/
#ifndef LWPKT_HDR_H
#define LWPKT_HDR_H
Expand Down
2 changes: 1 addition & 1 deletion lwpkt/src/include/lwpkt/lwpkt_opt.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwPKT - Lightweight packet protocol library.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.2.0
* Version: v1.3.0
*/
#ifndef LWPKT_OPT_HDR_H
#define LWPKT_OPT_HDR_H
Expand Down
2 changes: 1 addition & 1 deletion lwpkt/src/include/lwpkt/lwpkt_opts_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwPKT - Lightweight packet protocol library.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.2.0
* Version: v1.3.0
*/
#ifndef LWPKT_OPTS_HDR_H
#define LWPKT_OPTS_HDR_H
Expand Down
2 changes: 1 addition & 1 deletion lwpkt/src/lwpkt/lwpkt.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwPKT - Lightweight packet protocol library.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.2.0
* Version: v1.3.0
*/
#include <stdint.h>
#include <string.h>
Expand Down

0 comments on commit 589298e

Please sign in to comment.