Skip to content

Commit 35759fc

Browse files
authored
Merge pull request #105 from aspose-pdf-cloud/develop
update to 24.12
2 parents c401274 + 466c873 commit 35759fc

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
2929
## Read PDF Formats
3030
MHT, PCL, PS, XSLFO, MD
3131

32-
## Enhancements in Version 24.11
33-
- Add DocRecognitionMode EnhancedFlow mode.
32+
## Enhancements in Version 24.12
33+
- Add support for PDF to PDF 3B conversion.
3434
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3535

3636
## Unit Tests

docs/PdfAType.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Allows to specify PdfA file format.
88
**PDFA1A** | Pdf/A-1a format
99
**PDFA1B** | Pdf/A-1b format
1010
**PDFA3A** | Pdf/A-3a format
11+
**PDFA3B** | Pdf/A-3b format
1112

1213

1314
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

src/Aspose.Pdf.Cloud.Sdk/Client/ApiClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ private RestRequest PrepareRequest(
241241

242242
// add custom header
243243
request.AddHeader(AsposeClientHeaderName, ".net sdk");
244-
request.AddHeader(AsposeClientVersionHeaderName, "24.11.0");
244+
request.AddHeader(AsposeClientVersionHeaderName, "24.12.0");
245245

246246
// add header parameter, if any
247247
foreach(var param in headerParams)

src/Aspose.Pdf.Cloud.Sdk/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ public static string ToDebugReport()
225225
.GetReferencedAssemblies()
226226
.Where(x => x.Name == "System.Core").First().Version.ToString() + "\n";
227227
report += " Version of the API: 3.0\n";
228-
report += " SDK Package Version: 24.11.0\n";
228+
report += " SDK Package Version: 24.12.0\n";
229229

230230
return report;
231231
}

src/Aspose.Pdf.Cloud.Sdk/Model/PdfAType.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,13 @@ public enum PdfAType
6464
/// Enum PDFA3A for "PDFA3A"
6565
/// </summary>
6666
[EnumMember(Value = "PDFA3A")]
67-
PDFA3A
67+
PDFA3A,
68+
69+
/// <summary>
70+
/// Enum PDFA3B for "PDFA3B"
71+
/// </summary>
72+
[EnumMember(Value = "PDFA3B")]
73+
PDFA3B
6874
}
6975

7076
}

src/Aspose.Pdf.Cloud.Sdk/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
31-
[assembly: AssemblyVersion("24.11.0")]
32-
[assembly: AssemblyFileVersion("24.11.0")]
31+
[assembly: AssemblyVersion("24.12.0")]
32+
[assembly: AssemblyFileVersion("24.12.0")]

0 commit comments

Comments
 (0)