We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2087331 commit 8366a00Copy full SHA for 8366a00
1 file changed
upgrade/upgrade.sh
@@ -17,4 +17,13 @@ git checkout -b "sqlite-amalgamation-$VERSION"
17
git commit -m "Upgrade SQLite to version $VERSION" sqlite3-binding.c sqlite3-binding.h sqlite3ext.h
18
git push origin HEAD
19
20
-gh pr create --title "Upgrade SQLite to version $VERSION" --body "Automated SQLite upgrade to version $VERSION" --web
+MAJOR=$(echo $VERSION | cut -c1-3)
21
+MINOR=$(echo $VERSION | cut -c4-5)
22
+PATCH=$(echo $VERSION | cut -c6-7)
23
+VERSION_STR="${MAJOR}.${MINOR}.${PATCH}"
24
+CHANGELOG_URL="https://www.sqlite.org/releaselog/${VERSION_STR}.html"
25
+
26
+gh pr create --title "Upgrade SQLite to version $VERSION" --body "Automated SQLite upgrade to version $VERSION
27
28
+## Changelog
29
+See: $CHANGELOG_URL" --web
0 commit comments