From 7ca1ccde11e962b2fd73e74ed90b4fb14333a732 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 13 Jun 2025 15:04:24 +0200 Subject: [PATCH] Increment version numbers --- README.md | 11 ++++++++--- .../com.micropythonos.camera/META-INF/MANIFEST.JSON | 6 +++--- .../com.micropythonos.wifi/META-INF/MANIFEST.JSON | 6 +++--- internal_filesystem/lib/mpos/info.py | 2 +- 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7f80e232..fba1436f 100644 --- a/README.md +++ b/README.md @@ -92,11 +92,16 @@ If you made a 'devbuild', then you probably want to install all files and apps m Release checklist ================= - Make sure CURRENT_OS_VERSION in main.py is incremented -- Make sure version numbers of apps that have been changed are incremented +- Make sure version numbers of apps that have been changed are incremented: + # everything that changed: + git diff --stat 0.0.4 + # manifests that might have already had their version number incremented: + git diff 0.0.4 -- internal_filesystem/apps/*/META-INF/* + git diff 0.0.4 -- internal_filesystem/builtin/apps/*/META-INF/* - commit and push all code +- tag MicroPythonOS and external apps like LightningPiggy - ./scripts/bundle_apps.sh -- ./scripts/freezefs_mount_builtin.sh -- ./scripts/build_lvgl_micropython.sh +- ./scripts/build_lvgl_micropython.sh esp32 prod - copy_apps_to_server.sh - copy_build_to_server.sh - copy ~/sources/lvgl_micropython/build/lvgl_micropy_ESP32_GENERIC_S3-SPIRAM_OCT-16.bin to webinstaller diff --git a/internal_filesystem/apps/com.micropythonos.camera/META-INF/MANIFEST.JSON b/internal_filesystem/apps/com.micropythonos.camera/META-INF/MANIFEST.JSON index 21141339..34b0cbe6 100644 --- a/internal_filesystem/apps/com.micropythonos.camera/META-INF/MANIFEST.JSON +++ b/internal_filesystem/apps/com.micropythonos.camera/META-INF/MANIFEST.JSON @@ -3,10 +3,10 @@ "publisher": "MicroPythonOS", "short_description": "Camera with QR decoding", "long_description": "Camera for both internal camera's and webcams, that includes QR decoding.", -"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.camera/icons/com.micropythonos.camera_0.0.3_64x64.png", -"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.camera/mpks/com.micropythonos.camera_0.0.3.mpk", +"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.camera/icons/com.micropythonos.camera_0.0.4_64x64.png", +"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.camera/mpks/com.micropythonos.camera_0.0.4.mpk", "fullname": "com.micropythonos.camera", -"version": "0.0.3", +"version": "0.0.4", "category": "camera", "activities": [ { diff --git a/internal_filesystem/builtin/apps/com.micropythonos.wifi/META-INF/MANIFEST.JSON b/internal_filesystem/builtin/apps/com.micropythonos.wifi/META-INF/MANIFEST.JSON index 8385fff4..5f5adcb3 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.wifi/META-INF/MANIFEST.JSON +++ b/internal_filesystem/builtin/apps/com.micropythonos.wifi/META-INF/MANIFEST.JSON @@ -3,10 +3,10 @@ "publisher": "MicroPythonOS", "short_description": "WiFi Network Configuration", "long_description": "Scans for wireless networks, shows a list of SSIDs, allows for password entry, and connecting.", -"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/icons/com.micropythonos.wifi_0.0.3_64x64.png", -"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/mpks/com.micropythonos.wifi_0.0.3.mpk", +"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/icons/com.micropythonos.wifi_0.0.4_64x64.png", +"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/mpks/com.micropythonos.wifi_0.0.4.mpk", "fullname": "com.micropythonos.wifi", -"version": "0.0.3", +"version": "0.0.4", "category": "networking", "activities": [ { diff --git a/internal_filesystem/lib/mpos/info.py b/internal_filesystem/lib/mpos/info.py index 93436c3a..3e1a7f6a 100644 --- a/internal_filesystem/lib/mpos/info.py +++ b/internal_filesystem/lib/mpos/info.py @@ -1 +1 @@ -CURRENT_OS_VERSION = "0.0.4" +CURRENT_OS_VERSION = "0.0.5"