Update package version to 3.54.2

This commit is contained in:
2025-09-16 11:52:20 +03:00
parent af6a83962d
commit d87984265f
2 changed files with 16 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Gitlab repository
REPO="GNOME/pygobject"
# Replace slash with URL encoded representation
REPO=$(echo "$REPO" | sed 's|/|%2F|g')
# Get tag name using Gitlab Rest API
TAG_NAME=$(curl -s -L https://gitlab.gnome.org/api/v4/projects/"$REPO"/releases/permalink/latest | jq -r '.tag_name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+1 -1
View File
@@ -1,6 +1,6 @@
name: python-pygobject name: python-pygobject
description: Python package which provides bindings for GObject based libraries description: Python package which provides bindings for GObject based libraries
version: 3.52.3 version: 3.54.2
url: https://pygobject.gnome.org/ url: https://pygobject.gnome.org/
license: LGPL2.1-or-later license: LGPL2.1-or-later
architecture: any architecture: any