Marcin Ziąbek 3 months ago
parent
commit
0d33044115
2 changed files with 4 additions and 2 deletions
  1. 1 1
      Source/QuestPDF/QuestPDF.csproj
  2. 3 1
      Source/QuestPDF/Resources/ReleaseNotes.txt

+ 1 - 1
Source/QuestPDF/QuestPDF.csproj

@@ -3,7 +3,7 @@
         <Authors>MarcinZiabek</Authors>
         <Authors>MarcinZiabek</Authors>
         <Company>CodeFlint</Company>
         <Company>CodeFlint</Company>
         <PackageId>QuestPDF</PackageId>
         <PackageId>QuestPDF</PackageId>
-        <Version>2025.12.0-alpha0</Version>
+        <Version>2025.7.2</Version>
         <PackageDescription>Generate and edit PDF documents in your .NET applications using the open-source QuestPDF library and its C# Fluent API. Build invoices, reports and data exports with ease.</PackageDescription>
         <PackageDescription>Generate and edit PDF documents in your .NET applications using the open-source QuestPDF library and its C# Fluent API. Build invoices, reports and data exports with ease.</PackageDescription>
         <PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/Resources/ReleaseNotes.txt"))</PackageReleaseNotes>
         <PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/Resources/ReleaseNotes.txt"))</PackageReleaseNotes>
         <LangVersion>12</LangVersion>
         <LangVersion>12</LangVersion>

+ 3 - 1
Source/QuestPDF/Resources/ReleaseNotes.txt

@@ -1,4 +1,6 @@
 - Disabled standard ligatures by default, as they often interfere with text copying and may pose accessibility issues,
 - Disabled standard ligatures by default, as they often interfere with text copying and may pose accessibility issues,
 - Performance has been improved when generating multiple text-heavy documents at the same time. The more concurrent operations and text elements involved, the more noticeable the benefit,
 - Performance has been improved when generating multiple text-heavy documents at the same time. The more concurrent operations and text elements involved, the more noticeable the benefit,
 - Improved the developer experience by updating the behavior of the GeneratePdfAndShow method to always create a uniquely named file. It ensures that certain PDF viewers automatically refresh the preview,
 - Improved the developer experience by updating the behavior of the GeneratePdfAndShow method to always create a uniquely named file. It ensures that certain PDF viewers automatically refresh the preview,
-- Fix exception triggered when generating a PDF without defining a Page in the Fluent API.
+- Fixed exception triggered when generating a PDF without defining a Page in the Fluent API,
+- Increased test coverage,
+- Minor bug fixes and improvements.