Skip to content

Commit cec2fa5

Browse files
committed
Release 1.1.0
1 parent c9aa689 commit cec2fa5

File tree

12 files changed

+13
-11
lines changed

12 files changed

+13
-11
lines changed

CHANGELOG.md

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

33
## Develop
44

5+
## v1.1.0
6+
57
- Rework library CMake with removed INTERFACE type and placed with STATIC
68
- Rename `struct lwprintf` to `struct lwprintf_s` to not interfere with short names
79
- Fix the platformio library package description

dev/lwprintf_opts.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 Lightweight stdio manager library.
3030
*
3131
* Author: Tilen MAJERLE <tilen@majerle.eu>
32-
* Version: v1.0.6
32+
* Version: v1.1.0
3333
*/
3434
#ifndef LWPRINTF_HDR_OPTS_H
3535
#define LWPRINTF_HDR_OPTS_H

examples/stm32/lwprintf_stm32l432kc_nucleo/Core/Inc/lwprintf_opts.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 LwPRINTF - Lightweight stdio manager library.
3030
*
3131
* Author: Tilen MAJERLE <tilen@majerle.eu>
32-
* Version: v1.0.6
32+
* Version: v1.1.0
3333
*/
3434
#ifndef LWPRINTF_HDR_OPTS_H
3535
#define LWPRINTF_HDR_OPTS_H

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "LwPRINTF",
3-
"version": "1.0.6",
3+
"version": "1.1.0",
44
"description": "Lightweight printf and sprintf library for embedded systems",
55
"keywords": "printf, lightweight, lwprintf, sprintf, snprintf, embedded, stdio, manager, library",
66
"repository": {

lwprintf/src/include/lwprintf/lwprintf.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 LwPRINTF - Lightweight stdio manager library.
3030
*
3131
* Author: Tilen MAJERLE <tilen@majerle.eu>
32-
* Version: v1.0.6
32+
* Version: v1.1.0
3333
*/
3434
#ifndef LWPRINTF_HDR_H
3535
#define LWPRINTF_HDR_H

lwprintf/src/include/lwprintf/lwprintf_opt.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 LwPRINTF - Lightweight stdio manager library.
3030
*
3131
* Author: Tilen MAJERLE <tilen@majerle.eu>
32-
* Version: v1.0.6
32+
* Version: v1.1.0
3333
*/
3434
#ifndef LWPRINTF_OPT_HDR_H
3535
#define LWPRINTF_OPT_HDR_H

lwprintf/src/include/lwprintf/lwprintf_opts_template.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 LwPRINTF - Lightweight stdio manager library.
3030
*
3131
* Author: Tilen MAJERLE <tilen@majerle.eu>
32-
* Version: v1.0.6
32+
* Version: v1.1.0
3333
*/
3434
#ifndef LWPRINTF_OPTS_HDR_H
3535
#define LWPRINTF_OPTS_HDR_H

lwprintf/src/include/system/lwprintf_sys.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 LwPRINTF - Lightweight stdio manager library.
3030
*
3131
* Author: Tilen MAJERLE <tilen@majerle.eu>
32-
* Version: v1.0.6
32+
* Version: v1.1.0
3333
*/
3434
#ifndef LWPRINTF_SYS_HDR_H
3535
#define LWPRINTF_SYS_HDR_H

lwprintf/src/lwprintf/lwprintf.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 LwPRINTF - Lightweight stdio manager library.
3030
*
3131
* Author: Tilen MAJERLE <tilen@majerle.eu>
32-
* Version: v1.0.6
32+
* Version: v1.1.0
3333
*/
3434
#include "lwprintf/lwprintf.h"
3535
#include <float.h>

lwprintf/src/system/lwprintf_sys_cmsis_os.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 LwPRINTF - Lightweight stdio manager library.
3030
*
3131
* Author: Tilen MAJERLE <tilen@majerle.eu>
32-
* Version: v1.0.6
32+
* Version: v1.1.0
3333
*/
3434
#include "system/lwprintf_sys.h"
3535

0 commit comments

Comments
 (0)