Update package version to 0.9.2

This commit is contained in:
2025-09-16 19:20:08 +03:00
parent ac198e82c3
commit 2b36a41eb0
2 changed files with 17 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Github repository
REPO="wmww/gtk-layer-shell"
# Get tag name using Github Rest API
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/releases/latest | jq -r '.tag_name')
# Get version number from tag name
#VERSION=$(echo "$TAG_NAME" | rev | cut -d'-' -f1 | rev)
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+2 -2
View File
@@ -1,9 +1,9 @@
name: gtk-layer-shell name: gtk-layer-shell
description: A library to create panels and other desktop components for Wayland using the Layer Shell protocol description: A library to create panels and other desktop components for Wayland using the Layer Shell protocol
version: 0.9.0 version: 0.9.2
url: https://github.com/wmww/gtk-layer-shell url: https://github.com/wmww/gtk-layer-shell
license: LGPL3-or-later license: LGPL3-or-later
architecture: any architecture: any
depends: ["gtk3","wayland"] depends: ["gtk3","wayland"]
make_depends: ["gobject-introspection","meson","python-setuptools","valabind"] make_depends: ["gobject-introspection","meson","valabind","wayland-protocols"]
type: source type: source