From 5b15848048d6b563590ae56b08009e093489c619 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Sun, 25 May 2025 01:29:14 +0500 Subject: [PATCH] Update version to 0.9.0 Bump the application version from 0.8.0 to 0.9.0 in both `main.go` and `FyneApp.toml`. This reflects the latest changes and prepares the app for the next release. --- FyneApp.toml | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FyneApp.toml b/FyneApp.toml index 3b204ee..1fe1f80 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -2,7 +2,7 @@ Icon = "icon.png" Name = "GUI for FFmpeg" ID = "net.kor-elf.projects.gui-for-ffmpeg" - Version = "0.8.0" + Version = "0.9.0" Build = 4 [Migrations] diff --git a/main.go b/main.go index c681288..5f30405 100644 --- a/main.go +++ b/main.go @@ -27,7 +27,7 @@ func init() { appMetadata := &fyne.AppMetadata{ ID: "net.kor-elf.projects.gui-for-ffmpeg", Name: "GUI for FFmpeg", - Version: "0.8.0", + Version: "0.9.0", Icon: iconResource, }