Skip to content

Commit

Permalink
Merge pull request #57 from berthertogen/feature/upgrade-weasyprint
Browse files Browse the repository at this point in the history
Update weasyprint version to latest
  • Loading branch information
berthertogen authored Aug 5, 2024
2 parents 676343b + 3ccd31f commit c45f063
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-on-linux.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
workingDir="./standalone-linux-64";
assets="./assets";
version=weasyprint==61
version=weasyprint==62.3

if [ -d "$workingDir" ]; then
echo "*** Cleaning $workingDir"
Expand Down
2 changes: 1 addition & 1 deletion build-on-windows.ps1
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/Weasyprint.Wrapped.Tests/Tests/PrinterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit c45f063

Please sign in to comment.