version: prepare v0.3.1

This commit is contained in:
Stéphane Cerveau 2023-09-16 12:58:15 +02:00
parent 38928e07b8
commit 5c9a273fcc
6 changed files with 16 additions and 11 deletions

2
Cargo.lock generated
View file

@ -526,7 +526,7 @@ dependencies = [
[[package]] [[package]]
name = "gst_pipeline_studio" name = "gst_pipeline_studio"
version = "0.3.0" version = "0.3.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"futures-channel", "futures-channel",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "gst_pipeline_studio" name = "gst_pipeline_studio"
version = "0.3.0" version = "0.3.1"
edition = "2018" edition = "2018"
rust-version = "1.70.0" rust-version = "1.70.0"

View file

@ -85,9 +85,6 @@
- [x] Update node description on property removal - [x] Update node description on property removal
## 0.3.0 ## 0.3.0
### app
- [x] handle the caps setter element
- [x] Add multiple graphviews with tabs.
### CI/Infra ### CI/Infra
- [x] Create a macos installer - [x] Create a macos installer
@ -97,4 +94,9 @@
- [x] set/get the file format version - [x] set/get the file format version
### GStreamer ### GStreamer
- [x] Display GStreamer version in the about dialog - [x] Display GStreamer version in the about dialog
## 0.3.1
### app
- [x] Add multiple graphviews with tabs.
- [x] handle the caps setter element

View file

@ -16,9 +16,10 @@ $heatToolPath = Join-Path $wixFolder -ChildPath heat.exe
$GPSUpgradeCode = "9B87C8FF-599C-4F20-914E-AF5E68CB3DC0" $GPSUpgradeCode = "9B87C8FF-599C-4F20-914E-AF5E68CB3DC0"
$GPSVersion = $(git describe --always --abbrev=0) $GPSVersion = $(git describe --always --abbrev=0)
Write-Output "Version:"
Write-Output $GPSVersion
$GPSVersion = "0.3.1"
Write-Output $GPSVersion Write-Output $GPSVersion
$GPSVersion = "0.3.0"
try try
{ {
Push-Location $PSScriptRoot Push-Location $PSScriptRoot
@ -58,7 +59,7 @@ try
throw "Compilation of $wxsFileName failed with exit code $LASTEXITCODE" throw "Compilation of $wxsFileName failed with exit code $LASTEXITCODE"
} }
} }
$AllArgs = $obj_files + @('-out', $msiFileName) $AllArgs = $obj_files + @('-out', $msiFileName)
& $lightToolPath $AllArgs -ext WixUIExtension & $lightToolPath $AllArgs -ext WixUIExtension

View file

@ -1,5 +1,5 @@
project('gst_pipeline_studio', project('gst_pipeline_studio',
version: '0.3.0', version: '0.3.1',
meson_version: '>= 0.50.0', meson_version: '>= 0.50.0',
default_options: [ 'warning_level=2', default_options: [ 'warning_level=2',
], ],

View file

@ -3,9 +3,11 @@
- Update to the given version: - Update to the given version:
- meson.build - meson.build
- cargo.toml - cargo.toml
- installer/wix/build_installer.ps1
- create a tag on gitlab - create a tag on gitlab
- meson builddir -Dbuildtype=release - meson builddir -Dbuildtype=release
- ninja -C buiddir dist - ninja -C builddir dist
- upload the package and the sha256 to gitlab for Flatpak in the release notes - upload the package and the sha256 to gitlab for Flatpak in the release notes
# flathub # flathub