From 1ca3bbd2b6fa106c0d8da42a58fbc46f71e82e9a Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 30 Jul 2023 14:58:54 +0200 Subject: [PATCH] Fix typo in the `baseVersion` commit hash (PR 16769 follow-up) Looking at the demo-viewer I noticed that the version number seems to be stuck at version `3.10.0` despite a couple of PRs having landed since the version bump in PR 16769. Searching for the current `baseVersion` doesn't find an actual commit, see https://github.com/search?q=repo%3Amozilla%2Fpdf.js+1ef6fbc525856318e78a6035b200ba1c6ec02d491&type=commits However, looking at the commit hash it seems to be too long and removing the trailing `1` appears to fix things; see https://github.com/search?q=repo%3Amozilla%2Fpdf.js+1ef6fbc525856318e78a6035b200ba1c6ec02d49&type=commits --- pdfjs.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdfjs.config b/pdfjs.config index 68ac3c48f..53df84fa7 100644 --- a/pdfjs.config +++ b/pdfjs.config @@ -1,5 +1,5 @@ { "stableVersion": "3.9.179", - "baseVersion": "1ef6fbc525856318e78a6035b200ba1c6ec02d491", + "baseVersion": "1ef6fbc525856318e78a6035b200ba1c6ec02d49", "versionPrefix": "3.10." }