From dbd4de8e618db16672a812f5e607dd52a5b6e519 Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Tue, 7 Jul 2026 10:20:27 -0400 Subject: [PATCH] bump: desktop app v0.2.0, build all Linux bundles (appimage, deb, rpm) --- Makefile | 2 +- web/src-tauri/Cargo.toml | 2 +- web/src-tauri/tauri.conf.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0477cd9..a56c97a 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ build-tui: # Build the Tauri desktop app (Linux AppImage) build-tauri: - cd web && NODE_ENV=development NO_STRIP=true npx tauri build --bundles appimage + cd web && NODE_ENV=development NO_STRIP=true npx tauri build --bundles appimage,deb,rpm # Generate Swagger docs docs: diff --git a/web/src-tauri/Cargo.toml b/web/src-tauri/Cargo.toml index fb4d9fc..0c62754 100644 --- a/web/src-tauri/Cargo.toml +++ b/web/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app" -version = "0.1.0" +version = "0.2.0" description = "A Tauri App" authors = ["you"] license = "" diff --git a/web/src-tauri/tauri.conf.json b/web/src-tauri/tauri.conf.json index 57b077f..da3cbf1 100644 --- a/web/src-tauri/tauri.conf.json +++ b/web/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "dumpsterChat", - "version": "0.1.0", + "version": "0.2.0", "identifier": "coffee.dustin.dumpsterchat", "build": { "frontendDist": "../dist",