From 7ebe52ff9e58724f03913daec3c9037fe072176c Mon Sep 17 00:00:00 2001 From: Tilen Date: Mon, 24 Aug 2026 21:49:49 +0200 Subject: [PATCH] version v1.3.2 --- CHANGELOG.md | 3 +++ examples/LwBTN-NUCLEO-L011K4/Core/Inc/lwbtn_opts.h | 2 +- library.json | 2 +- lwbtn/src/include/lwbtn/lwbtn.h | 2 +- lwbtn/src/include/lwbtn/lwbtn_opt.h | 2 +- lwbtn/src/include/lwbtn/lwbtn_opts_template.h | 2 +- lwbtn/src/lwbtn/lwbtn.c | 2 +- tests/test_lwbtn_main/lwbtn_opts.h | 2 +- 8 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bb4c7c..bbec5f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ ## Develop +## v1.3.2 + - Guard all optional functions with the conditional compilation depending on the user configuration +- Fix potential infinite while loop for keep alive ## v1.3.1 diff --git a/examples/LwBTN-NUCLEO-L011K4/Core/Inc/lwbtn_opts.h b/examples/LwBTN-NUCLEO-L011K4/Core/Inc/lwbtn_opts.h index cf81ee5..d7d2e43 100644 --- a/examples/LwBTN-NUCLEO-L011K4/Core/Inc/lwbtn_opts.h +++ b/examples/LwBTN-NUCLEO-L011K4/Core/Inc/lwbtn_opts.h @@ -29,7 +29,7 @@ * This file is part of LwBTN - Lightweight button manager. * * Author: Tilen MAJERLE - * Version: v1.3.1 + * Version: v1.3.2 */ #ifndef LWBTN_HDR_OPTS_H #define LWBTN_HDR_OPTS_H diff --git a/library.json b/library.json index e3bc5f9..33a28d3 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "LwBTN", - "version": "1.3.1", + "version": "1.3.2", "description": "Lightweight button handler for embedded systems", "keywords": "lwbtn, button, input, manager, btn, lightweight, embedded", "repository": { diff --git a/lwbtn/src/include/lwbtn/lwbtn.h b/lwbtn/src/include/lwbtn/lwbtn.h index 7c4e986..a17bdb8 100644 --- a/lwbtn/src/include/lwbtn/lwbtn.h +++ b/lwbtn/src/include/lwbtn/lwbtn.h @@ -29,7 +29,7 @@ * This file is part of LwBTN - Lightweight button manager. * * Author: Tilen MAJERLE - * Version: v1.3.1 + * Version: v1.3.2 */ #ifndef LWBTN_HDR_H #define LWBTN_HDR_H diff --git a/lwbtn/src/include/lwbtn/lwbtn_opt.h b/lwbtn/src/include/lwbtn/lwbtn_opt.h index fecd7ef..557a6fd 100644 --- a/lwbtn/src/include/lwbtn/lwbtn_opt.h +++ b/lwbtn/src/include/lwbtn/lwbtn_opt.h @@ -29,7 +29,7 @@ * This file is part of LwBTN - Lightweight button manager. * * Author: Tilen MAJERLE - * Version: v1.3.1 + * Version: v1.3.2 */ #ifndef LWBTN_OPT_HDR_H #define LWBTN_OPT_HDR_H diff --git a/lwbtn/src/include/lwbtn/lwbtn_opts_template.h b/lwbtn/src/include/lwbtn/lwbtn_opts_template.h index 97c9e3d..dc14895 100644 --- a/lwbtn/src/include/lwbtn/lwbtn_opts_template.h +++ b/lwbtn/src/include/lwbtn/lwbtn_opts_template.h @@ -29,7 +29,7 @@ * This file is part of LwBTN - Lightweight button manager. * * Author: Tilen MAJERLE - * Version: v1.3.1 + * Version: v1.3.2 */ #ifndef LWBTN_OPTS_HDR_H #define LWBTN_OPTS_HDR_H diff --git a/lwbtn/src/lwbtn/lwbtn.c b/lwbtn/src/lwbtn/lwbtn.c index cb037db..e634233 100644 --- a/lwbtn/src/lwbtn/lwbtn.c +++ b/lwbtn/src/lwbtn/lwbtn.c @@ -29,7 +29,7 @@ * This file is part of LwBTN - Lightweight button manager. * * Author: Tilen MAJERLE - * Version: v1.3.1 + * Version: v1.3.2 */ #include #include "lwbtn/lwbtn.h" diff --git a/tests/test_lwbtn_main/lwbtn_opts.h b/tests/test_lwbtn_main/lwbtn_opts.h index ee171cd..7be990a 100644 --- a/tests/test_lwbtn_main/lwbtn_opts.h +++ b/tests/test_lwbtn_main/lwbtn_opts.h @@ -29,7 +29,7 @@ * This file is part of LwBTN - Lightweight button manager. * * Author: Tilen MAJERLE - * Version: v1.3.1 + * Version: v1.3.2 */ #ifndef LWBTN_HDR_OPTS_H #define LWBTN_HDR_OPTS_H