From e4e054e75aa2e238d17627fc5554505fa9654704 Mon Sep 17 00:00:00 2001 From: ospab Date: Wed, 17 Jun 2026 19:38:29 +0300 Subject: [PATCH] chore: version updates and build script tweaks --- ostp-flutter/pubspec.yaml | 2 +- ostp-gui/src-tauri/tauri.conf.json | 2 +- scripts/build.ps1 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ostp-flutter/pubspec.yaml b/ostp-flutter/pubspec.yaml index 2bb5aee..869f7be 100644 --- a/ostp-flutter/pubspec.yaml +++ b/ostp-flutter/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.2.98+13 +version: 0.3.2+16 environment: sdk: ^3.11.4 diff --git a/ostp-gui/src-tauri/tauri.conf.json b/ostp-gui/src-tauri/tauri.conf.json index 123b0b3..17b3fd8 100644 --- a/ostp-gui/src-tauri/tauri.conf.json +++ b/ostp-gui/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "ostp-gui", - "version": "0.2.98", + "version": "0.3.2", "identifier": "com.ospab.ostp", "build": { "frontendDist": "../src" diff --git a/scripts/build.ps1 b/scripts/build.ps1 index d30be44..31294dd 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -19,7 +19,7 @@ Write-Output "Synchronizing with origin master..." # --- Version bump --- $CargoToml = Join-Path $ProjectRoot "Cargo.toml" -$Version = "0.2.0" +$Version = "0.3.0" if (Test-Path $CargoToml) { $Content = [System.IO.File]::ReadAllText($CargoToml) # Match version only in [workspace.package] section (first occurrence)