From 3ccd31f6afcdc208a91970a1f6a4b562737174e6 Mon Sep 17 00:00:00 2001 From: Bert Hertogen Date: Mon, 5 Aug 2024 11:19:02 +0200 Subject: [PATCH] Update weasyprint version to latest --- build-on-linux.sh | 2 +- build-on-windows.ps1 | 2 +- src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-on-linux.sh b/build-on-linux.sh index 603ff51..d9a770c 100755 --- a/build-on-linux.sh +++ b/build-on-linux.sh @@ -1,6 +1,6 @@ workingDir="./standalone-linux-64"; assets="./assets"; -version=weasyprint==61 +version=weasyprint==62.3 if [ -d "$workingDir" ]; then echo "*** Cleaning $workingDir" diff --git a/build-on-windows.ps1 b/build-on-windows.ps1 index 554a558..a88c832 100644 --- a/build-on-windows.ps1 +++ b/build-on-windows.ps1 @@ -1,6 +1,6 @@ $workingDir = "./standalone-windows-64"; $assets = "./assets"; -$version = "weasyprint==61" +$version = "weasyprint==62.3" if (Test-Path $workingDir) { Write-Host "*** Cleaning $workingDir" diff --git a/src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs b/src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs index 61001f2..be3f2b2 100755 --- a/src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs +++ b/src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs @@ -227,7 +227,7 @@ public async Task Version_ReturnsVersion() var result = await printer.Version(); - Assert.Contains("WeasyPrint version: 61.0", result.Version); + Assert.Contains("WeasyPrint version: 62.3", result.Version); Assert.Equal(0, result.ExitCode); Assert.False(result.HasError); }