Update package version to 13.1.2

This commit is contained in:
2025-09-07 19:32:05 +03:00
parent 394e4bb621
commit 12ddb4cbe5
2 changed files with 19 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/bin/bash
# Gitlab repository
REPO="graphviz/graphviz"
# 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.com/api/v4/projects/"$REPO"/repository/tags | jq -r '.[0].name')
# Get version number from tag name
#VERSION=$(echo "$TAG_NAME" | rev | cut -d'-' -f1 | rev)
# Trim 'v' character in VERSION variable
#VERSION=$(echo "$VERSION" | tr -d 'v')
echo "$TAG_NAME"
+1 -1
View File
@@ -1,6 +1,6 @@
name: graphviz name: graphviz
description: Open source graph visualization software description: Open source graph visualization software
version: 12.2.1 version: 13.1.2
url: https://www.graphviz.org/ url: https://www.graphviz.org/
license: EPL-1.0 license: EPL-1.0
architecture: any architecture: any