Update package version to 1.6.0

This commit is contained in:
2025-09-17 22:03:04 +03:00
parent a62f6ede96
commit ec8f82dca9
2 changed files with 13 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Git repository
REPO="https://chromium.googlesource.com/webm/libwebp"
# Get tag name using 'git ls-remote'
TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | cut -d'/' -f3 | grep '^v' | grep -v 'rc' | tail -1)
# 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: libwebp name: libwebp
description: Lightweight encoding and decoding library for the WebP file format description: Lightweight encoding and decoding library for the WebP file format
version: 1.3.2 version: 1.6.0
url: https://developers.google.com/speed/webp/ url: https://developers.google.com/speed/webp/
license: BSD-3-Clause license: BSD-3-Clause
architecture: any architecture: any