diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml index 66be2e2..0897903 100644 --- a/.github/workflows/linux_build.yml +++ b/.github/workflows/linux_build.yml @@ -18,7 +18,7 @@ on: - "docs/**" env: - BETTER_MEDIA_INFO_VERSION: 0.4.0 + BETTER_MEDIA_INFO_VERSION: 0.5.0 MEDIA_INFO_LIB_VERSION: v24.12 jobs: diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index c174b6c..366fe79 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -18,7 +18,7 @@ on: - "docs/**" env: - BETTER_MEDIA_INFO_VERSION: 0.4.0 + BETTER_MEDIA_INFO_VERSION: 0.5.0 MEDIA_INFO_LIB_VERSION: v24.12 jobs: diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 9b5a3e0..c35f285 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -18,7 +18,7 @@ on: - "docs/**" env: - BETTER_MEDIA_INFO_VERSION: 0.4.0 + BETTER_MEDIA_INFO_VERSION: 0.5.0 MEDIA_INFO_LIB_VERSION: v24.12 jobs: diff --git a/package.json b/package.json index e282e6c..f57705e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bettermi", - "version": "0.4.0", + "version": "0.5.0", "description": "BetterMediaInfo", "type": "module", "scripts": { diff --git a/scripts/ts/change-version.ts b/scripts/ts/change-version.ts index 452ca3b..b6fba46 100644 --- a/scripts/ts/change-version.ts +++ b/scripts/ts/change-version.ts @@ -108,5 +108,5 @@ class ChangeVersion { } } -const changeVersion = new ChangeVersion("0.3.0", "0.4.0"); +const changeVersion = new ChangeVersion("0.4.0", "0.5.0"); changeVersion.change(); diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index b8f2d8e..8379d7c 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "BetterMediaInfo" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "encoding", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 2de2ad8..00a3cd8 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "BetterMediaInfo" -version = "0.4.0" +version = "0.5.0" description = "Betterh MediaInfo is a better GUI for MediaInfo" authors = ["Sam Cao"] edition = "2021" diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index f55cf4a..5e10d49 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -89,7 +89,7 @@ pub fn run() { .plugin(tauri_plugin_clipboard_manager::init()) .setup(|app| { let window = app.get_webview_window("main").unwrap(); - let _ = window.set_title("BetterMediaInfo v0.4.0"); + let _ = window.set_title("BetterMediaInfo v0.5.0"); Ok(()) }) .invoke_handler(tauri::generate_handler![ diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 54dd13f..1f05661 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2.0.0", "productName": "BetterMediaInfo", - "version": "0.4.0", + "version": "0.5.0", "identifier": "com.caoccao.better-media-info", "build": { "beforeDevCommand": "pnpm dev",