Skip to content

Commit b623542

Browse files
authored
🔖 Version 3.32.0 (#332)
1 parent 428d4a1 commit b623542

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Mindee .NET Client Library Changelog
22

3+
## v3.32.0 - 2025-09-03
4+
### Changes
5+
* :sparkles: add inference options
6+
### ¡Breaking Changes!
7+
* :recycle: :boom: update raw text output from server
8+
9+
310
## v3.31.0 - 2025-08-27
411
### Changes
512
* :sparkles: add typed properties to list and object

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>3.31.0</VersionPrefix>
3+
<VersionPrefix>3.32.0</VersionPrefix>
44
<VersionSuffix></VersionSuffix>
55
<Authors>Mindee</Authors>
66
<PackageProjectUrl>https://github.com/mindee/mindee-api-dotnet</PackageProjectUrl>

tests/Mindee.UnitTests/Parsing/V2/InferenceV2Test.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,10 @@ public void AsyncPredict_WhenComplete_MustHaveRawText()
263263
Assert.NotNull(rawText);
264264
Assert.NotNull(rawText.Pages);
265265
Assert.Equal(2, rawText.Pages.Count);
266+
foreach (RawTextPage page in rawText.Pages)
267+
{
268+
Assert.NotNull(page.Content);
269+
}
266270
Assert.Equal("This is the raw text of the first page...", rawText.Pages[0].Content);
267271
Assert.Equal(
268272
File.ReadAllText("Resources/v2/inference/raw_texts.txt"),

0 commit comments

Comments
 (0)