Increment version numbers

This commit is contained in:
Thomas Farstrike
2025-06-13 15:04:24 +02:00
parent f5ed06de44
commit 7ca1ccde11
4 changed files with 15 additions and 10 deletions
+8 -3
View File
@@ -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
@@ -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": [
{
@@ -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": [
{
+1 -1
View File
@@ -1 +1 @@
CURRENT_OS_VERSION = "0.0.4"
CURRENT_OS_VERSION = "0.0.5"