Release v0.1.2

This commit is contained in:
CJ Pais 2025-06-26 14:30:01 -07:00
parent 67aa527b3a
commit 2368b9e7ee
5 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "handy-app", "name": "handy-app",
"private": true, "private": true,
"version": "0.1.1", "version": "0.1.2",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

2
src-tauri/Cargo.lock generated
View file

@ -1952,7 +1952,7 @@ dependencies = [
[[package]] [[package]]
name = "handy" name = "handy"
version = "0.1.1" version = "0.1.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cpal", "cpal",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "handy" name = "handy"
version = "0.1.1" version = "0.1.2"
description = "Handy" description = "Handy"
authors = ["cjpais"] authors = ["cjpais"]
edition = "2021" edition = "2021"

View file

@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "Handy", "productName": "Handy",
"version": "0.1.1", "version": "0.1.2",
"identifier": "com.pais.handy", "identifier": "com.pais.handy",
"build": { "build": {
"beforeDevCommand": "bun run dev", "beforeDevCommand": "bun run dev",

View file

@ -20,7 +20,7 @@ const Footer: React.FC = () => {
setVersion(appVersion); setVersion(appVersion);
} catch (error) { } catch (error) {
console.error("Failed to get app version:", error); console.error("Failed to get app version:", error);
setVersion("0.1.1"); // fallback version setVersion("0.1.2"); // fallback version
} }
}; };