diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..ed4f8d2 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +URL="https://sqlite.org/index.html" + +# Get version number from tag name +VERSION=$(curl -s -L "$URL" | grep 'Version ' | grep -o -E '[0-9]{1,}\.[0-9]{1,}(\.[0-9]{1,})?') + +echo "$VERSION" diff --git a/pkg.info b/pkg.info index e825a1b..63b62bf 100644 --- a/pkg.info +++ b/pkg.info @@ -1,6 +1,6 @@ name: sqlite description: C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine -version: 3.45.1 +version: 3.50.4 url: https://www.sqlite.org/ license: "Public Domain" architecture: any