From d12563553adfa599db7cd70b1cdd0a72754a9eda Mon Sep 17 00:00:00 2001 From: petetronic <1178561+petetronic@users.noreply.github.com> Date: Mon, 24 Feb 2025 11:51:53 -0500 Subject: [PATCH] Update Quarto to 1.6.42 hotfix Quarto addressed a regression with code completions for .qmd files and backported the fix to the 1.6 release. --- build/lib/quarto.js | 2 +- build/lib/quarto.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/lib/quarto.js b/build/lib/quarto.js index efe36ed5abe..6dc359ed75d 100644 --- a/build/lib/quarto.js +++ b/build/lib/quarto.js @@ -83,7 +83,7 @@ function getQuartoLinux(version) { */ function getQuartoStream() { // quarto version - const version = '1.6.40'; + const version = '1.6.42'; fancyLog(`Synchronizing quarto ${version}...`); // Get the download/unpack stream for the current platform return process.platform === 'win32' ? diff --git a/build/lib/quarto.ts b/build/lib/quarto.ts index 3a95ee8d39c..13b5a365251 100644 --- a/build/lib/quarto.ts +++ b/build/lib/quarto.ts @@ -89,7 +89,7 @@ function getQuartoLinux(version: string): Stream { */ export function getQuartoStream(): Stream { // quarto version - const version = '1.6.40'; + const version = '1.6.42'; fancyLog(`Synchronizing quarto ${version}...`);