diff --git a/library.json b/library.json index 388130fd15..233aa99d5c 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "lvgl", - "version": "v7.0.1", + "version": "v7.0.2", "keywords": "graphics, gui, embedded, littlevgl", "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/lvgl.h b/lvgl.h index fe24ced90b..dfde3ba67c 100644 --- a/lvgl.h +++ b/lvgl.h @@ -79,7 +79,7 @@ extern "C" { #define LVGL_VERSION_MAJOR 7 #define LVGL_VERSION_MINOR 0 #define LVGL_VERSION_PATCH 2 -#define LVGL_VERSION_INFO "dev" +#define LVGL_VERSION_INFO "" /********************** * TYPEDEFS diff --git a/scripts/release.py b/scripts/release.py index 4b48d8bb44..410ab96c70 100644 --- a/scripts/release.py +++ b/scripts/release.py @@ -32,10 +32,10 @@ def lvgl_clone(): def lvgl_format(): title("lvgl: Run code formatter") - os.chdir("./scripts") - cmd("./code-formatter.sh") - cmd("git ci -am 'Run code formatter'") - os.chdir("..") + os.chdir("./scripts") + cmd("./code-formatter.sh") + cmd("git ci -am 'Run code formatter'") + os.chdir("..") def lvgl_update_version(): title("lvgl: Update version number")