Update package version to 4.3.1

This commit is contained in:
2025-09-20 17:55:20 +03:00
parent 577e13da3e
commit 9a4f2b097c
2 changed files with 13 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Sourceforge project
REPO="swig"
# Get version using best_release.json
VERSION=$(curl -s -L https://sourceforge.net/projects/"$REPO"/best_release.json | jq '.platform_releases.linux.filename' | cut -d'/' -f3)
# Trim prefix
VERSION=${VERSION//swig-/}
echo "$VERSION"