Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
Bert Hertogen committed Jan 5, 2025
1 parent a56b89d commit 02208ac
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==63.1
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==63.1"
$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: 63.1", 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 02208ac

Please sign in to comment.