From 7c3b20d9f2e72b7812e9f453b513d87208505abe Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Mon, 7 Oct 2024 17:14:06 +0200 Subject: [PATCH] chore: update the version number to v9.2.1 --- Kconfig | 4 ++-- env_support/cmake/version.cmake | 2 +- library.json | 2 +- library.properties | 2 +- lv_conf_template.h | 2 +- lv_version.h | 2 +- scripts/update_version.py | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Kconfig b/Kconfig index 71b6abc80..04f6094ae 100644 --- a/Kconfig +++ b/Kconfig @@ -1,4 +1,4 @@ -# Kconfig file for LVGL v9.2.0 +# Kconfig file for LVGL v9.2.1 menu "LVGL configuration" @@ -1482,7 +1482,7 @@ menu "LVGL configuration" default 2 # LVGL_VERSION_MINOR config LVGL_VERSION_PATCH int - default 0 # LVGL_VERSION_PATCH + default 1 # LVGL_VERSION_PATCH endmenu menu "Devices" diff --git a/env_support/cmake/version.cmake b/env_support/cmake/version.cmake index a9ed4c008..d87175a87 100644 --- a/env_support/cmake/version.cmake +++ b/env_support/cmake/version.cmake @@ -1,6 +1,6 @@ set(LVGL_VERSION_MAJOR "9") set(LVGL_VERSION_MINOR "2") -set(LVGL_VERSION_PATCH "0") +set(LVGL_VERSION_PATCH "1") set(LVGL_VERSION_INFO "") set(LVGL_VERSION ${LVGL_VERSION_MAJOR}.${LVGL_VERSION_MINOR}.${LVGL_VERSION_PATCH}) # This is a CMake variable diff --git a/library.json b/library.json index 37e104aea..abdd147c6 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "lvgl", - "version": "9.2.0", + "version": "9.2.1", "keywords": "graphics, gui, embedded, tft, lvgl", "description": "Graphics library to create embedded GUI with easy-to-use graphical elements, beautiful visual effects and low memory footprint. It offers anti-aliasing, opacity, and animations using only one frame buffer.", "repository": { diff --git a/library.properties b/library.properties index 7dbe2228e..d30a19bcd 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=lvgl -version=9.2.0 +version=9.2.1 author=kisvegabor maintainer=kisvegabor,embeddedt,pete-pjb sentence=Full-featured Graphics Library for Embedded Systems diff --git a/lv_conf_template.h b/lv_conf_template.h index 981679d5e..5902e166c 100644 --- a/lv_conf_template.h +++ b/lv_conf_template.h @@ -1,6 +1,6 @@ /** * @file lv_conf.h - * Configuration file for v9.2.0 + * Configuration file for v9.2.1 */ /* diff --git a/lv_version.h b/lv_version.h index 7e6356a66..bff97cbde 100644 --- a/lv_version.h +++ b/lv_version.h @@ -8,7 +8,7 @@ #define LVGL_VERSION_MAJOR 9 #define LVGL_VERSION_MINOR 2 -#define LVGL_VERSION_PATCH 0 +#define LVGL_VERSION_PATCH 1 #define LVGL_VERSION_INFO "" #endif /* LVGL_VERSION_H */ diff --git a/scripts/update_version.py b/scripts/update_version.py index e6aa88e4d..ab24a88db 100755 --- a/scripts/update_version.py +++ b/scripts/update_version.py @@ -124,7 +124,7 @@ class CmakeReplacer(MacroReplacer): class KconfigReplacer(RepoFileVersionReplacer): """Replace version info in Kconfig file""" - def __init__(self, relative_path_segments: List[str]): + def __init__(self, relative_path_segments: list[str]): super().__init__(relative_path_segments, 3) def applyVersionToLine(self, line: str, version: Version):