From 027054a20044744df68ca017e8d8c19ffb8dd206 Mon Sep 17 00:00:00 2001 From: Duncan Tourolle Date: Sat, 18 Jul 2026 15:57:23 +0200 Subject: [PATCH] Bump version to 0.0.16 Needed to deploy over the CI-installed build on device: CI derives versionCode as 1000 + major*10000 + minor*100 + patch, so the field is already at 1000, while a local `tauri android build` writes the raw patch number (15) and is rejected as a downgrade. Cargo.toml is versioned independently (0.1.0) and is left alone. Note: local builds still emit the raw code (16) - only CI applies the 1000+ formula, so deploying to a device with a CI build installed needs gen/android/app/tauri.properties patched after Tauri regenerates it. Co-Authored-By: Claude Opus 4.8 --- package.json | 2 +- src-tauri/tauri.conf.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c7637946..c7ffcc2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jellytau", - "version": "0.0.15", + "version": "0.0.16", "description": "", "type": "module", "packageManager": "bun@1.3.5", diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index e40219e6..d8889251 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "jellytau", - "version": "0.0.15", + "version": "0.0.16", "identifier": "com.dtourolle.jellytau", "build": { "beforeDevCommand": "bun run dev",