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