mirror of https://github.com/ospab/ostp.git
chore: version updates and build script tweaks
This commit is contained in:
parent
99ff76d595
commit
e4e054e75a
|
|
@ -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
|
# 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
|
# 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.
|
# 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:
|
environment:
|
||||||
sdk: ^3.11.4
|
sdk: ^3.11.4
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "ostp-gui",
|
"productName": "ostp-gui",
|
||||||
"version": "0.2.98",
|
"version": "0.3.2",
|
||||||
"identifier": "com.ospab.ostp",
|
"identifier": "com.ospab.ostp",
|
||||||
"build": {
|
"build": {
|
||||||
"frontendDist": "../src"
|
"frontendDist": "../src"
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Write-Output "Synchronizing with origin master..."
|
||||||
|
|
||||||
# --- Version bump ---
|
# --- Version bump ---
|
||||||
$CargoToml = Join-Path $ProjectRoot "Cargo.toml"
|
$CargoToml = Join-Path $ProjectRoot "Cargo.toml"
|
||||||
$Version = "0.2.0"
|
$Version = "0.3.0"
|
||||||
if (Test-Path $CargoToml) {
|
if (Test-Path $CargoToml) {
|
||||||
$Content = [System.IO.File]::ReadAllText($CargoToml)
|
$Content = [System.IO.File]::ReadAllText($CargoToml)
|
||||||
# Match version only in [workspace.package] section (first occurrence)
|
# Match version only in [workspace.package] section (first occurrence)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue