release: update release version fetcher

This commit is contained in:
Stéphane Cerveau 2023-09-23 09:05:30 +02:00
parent 98d6451e74
commit 2787211f0d
4 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

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

View file

@ -5,6 +5,7 @@
- cargo.toml
- VERSION
- index.html
- And rebuild to regenerate the cargo.lock
- create a tag on gitlab
- Fetch the package from the `linux release` job or you can make it manually with:

View file

@ -1,3 +1,3 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pub static APP_ID: &str = @APP_ID@;
pub static VERSION: &str = @VERSION@;
pub static VERSION: &str = env!("CARGO_PKG_VERSION");

View file

@ -1,6 +1,5 @@
conf = configuration_data()
conf.set_quoted('APP_ID', application_id)
conf.set_quoted('VERSION', version + version_suffix)
configure_file(
input: 'config.rs.in',