Update package version to 0.9.2
This commit is contained in:
@@ -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"
|
||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user