Release 2.56 (#5909)

This commit is contained in:
Kevin Papst
2026-04-25 09:58:43 +02:00
committed by GitHub
parent 01cb14a3da
commit 087350ab72
14 changed files with 477 additions and 162 deletions

View File

@@ -17,11 +17,11 @@ final class Constants
/**
* The current release version
*/
public const VERSION = '2.55.0';
public const VERSION = '2.56.0';
/**
* The current release: major * 10000 + minor * 100 + patch
*/
public const VERSION_ID = 25500;
public const VERSION_ID = 25600;
/**
* The software name
*/

View File

@@ -36,7 +36,6 @@ class SpoutSpreadsheet implements SpreadsheetPackage
private readonly ?string $locale = null,
)
{
$this->writer->setCreator(Constants::SOFTWARE);
}
/**
@@ -138,6 +137,10 @@ class SpoutSpreadsheet implements SpreadsheetPackage
public function save(): void
{
if ($this->writer instanceof XLSXWriter) {
$this->writer->setCreator(Constants::SOFTWARE);
}
$this->writer->close();
}
}