diff --git a/CHANGELOG.md b/CHANGELOG.md index c57aeea65..7ef01123b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [10.6.0] - 2024-11-25 + +### Added +- Update pdf.js to v4.8.69. +- (#4466) Handle LaTeX files with non `.tex` extension. + - This includes a new config item `latex.extraExts`. + - See https://github.com/James-Yu/LaTeX-Workshop/issues/4457#issuecomment-2491096409 for usage. + +### Fixed +- Binary file watcher polling should not await. + - This fix will benefit PDF change watcher. +- (#4448) Fix link highlighting in `\ref` and `\input` for non-word characters. +- (#4459) Additional menu buttons in PDF viewer drop down menu no longer hide menu on click. + ## [10.5.6] - 2024-10-31 ### Fixed diff --git a/package-lock.json b/package-lock.json index 54f7ac2d6..09345ec31 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "latex-workshop", - "version": "10.5.6", + "version": "10.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "latex-workshop", - "version": "10.5.6", + "version": "10.6.0", "license": "MIT", "dependencies": { "cross-spawn": "^7.0.6", diff --git a/package.json b/package.json index 36d34d6ae..510a4bbfc 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "LaTeX Workshop", "description": "Boost LaTeX typesetting efficiency with preview, compile, autocomplete, colorize, and more.", "icon": "icons/icon.png", - "version": "10.5.6", + "version": "10.6.0", "publisher": "James-Yu", "license": "MIT", "homepage": "https://github.com/James-Yu/LaTeX-Workshop",