From 949be1b7859111f351ad45f2889594dc43d6d4da Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Fri, 1 Aug 2025 21:15:19 -0700 Subject: [PATCH] release v0.3.3 --- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 8 ++++++-- src-tauri/tauri.conf.json | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 461d1c8..381b230 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "handy-app", "private": true, - "version": "0.3.2", + "version": "0.3.3", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d9f0460..c129381 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2003,7 +2003,7 @@ dependencies = [ [[package]] name = "handy" -version = "0.3.2" +version = "0.3.3" dependencies = [ "anyhow", "cpal", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b86d834..bb65c43 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "handy" -version = "0.3.2" +version = "0.3.3" description = "Handy" authors = ["cjpais"] edition = "2021" @@ -28,7 +28,11 @@ tauri-build = { version = "2", features = [] } [dependencies] once_cell = "1" -tauri = { version = "2", features = [ "macos-private-api", "tray-icon", 'image-png'] } +tauri = { version = "2", features = [ + "macos-private-api", + "tray-icon", + 'image-png', +] } tauri-plugin-opener = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 5162ab5..988dae3 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": "Handy", - "version": "0.3.2", + "version": "0.3.3", "identifier": "com.pais.handy", "build": { "beforeDevCommand": "bun run dev",