Skip to content

Commit 62e647f

Browse files
.Net: Version 1.56.0 (#12436)
### Motivation and Context Bump version number to 1.56.0 ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone 😄
1 parent ab0a70e commit 62e647f

File tree

2 files changed

+2
-44
lines changed

2 files changed

+2
-44
lines changed

dotnet/nuget/nuget-package.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project>
22
<PropertyGroup>
33
<!-- Central version prefix - applies to all nuget packages. -->
4-
<VersionPrefix>1.55.0</VersionPrefix>
4+
<VersionPrefix>1.56.0</VersionPrefix>
55
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
66
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</PackageVersion>
77

88
<Configurations>Debug;Release;Publish</Configurations>
99
<IsPackable>true</IsPackable>
1010

1111
<!-- Package validation. Baseline Version should be the latest version available on NuGet. -->
12-
<PackageValidationBaselineVersion>1.54.0</PackageValidationBaselineVersion>
12+
<PackageValidationBaselineVersion>1.55.0</PackageValidationBaselineVersion>
1313
<!-- Validate assembly attributes only for Publish builds -->
1414
<NoWarn Condition="'$(Configuration)' != 'Publish'">$(NoWarn);CP0003</NoWarn>
1515
<!-- Do not validate reference assemblies -->

dotnet/src/SemanticKernel.Core/CompatibilitySuppressions.xml

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -8,53 +8,11 @@
88
<Right>lib/net8.0/Microsoft.SemanticKernel.Core.dll</Right>
99
<IsBaselineSuppression>true</IsBaselineSuppression>
1010
</Suppression>
11-
<Suppression>
12-
<DiagnosticId>CP0002</DiagnosticId>
13-
<Target>M:Microsoft.SemanticKernel.Data.TextSearchProvider.#ctor(Microsoft.SemanticKernel.Data.ITextSearch,Microsoft.SemanticKernel.Data.TextSearchProviderOptions)</Target>
14-
<Left>lib/net8.0/Microsoft.SemanticKernel.Core.dll</Left>
15-
<Right>lib/net8.0/Microsoft.SemanticKernel.Core.dll</Right>
16-
<IsBaselineSuppression>true</IsBaselineSuppression>
17-
</Suppression>
18-
<Suppression>
19-
<DiagnosticId>CP0002</DiagnosticId>
20-
<Target>M:Microsoft.SemanticKernel.Memory.Mem0Provider.#ctor(System.Net.Http.HttpClient,Microsoft.SemanticKernel.Memory.Mem0ProviderOptions)</Target>
21-
<Left>lib/net8.0/Microsoft.SemanticKernel.Core.dll</Left>
22-
<Right>lib/net8.0/Microsoft.SemanticKernel.Core.dll</Right>
23-
<IsBaselineSuppression>true</IsBaselineSuppression>
24-
</Suppression>
25-
<Suppression>
26-
<DiagnosticId>CP0002</DiagnosticId>
27-
<Target>M:Microsoft.SemanticKernel.Memory.WhiteboardProvider.#ctor(Microsoft.Extensions.AI.IChatClient,Microsoft.SemanticKernel.Memory.WhiteboardProviderOptions)</Target>
28-
<Left>lib/net8.0/Microsoft.SemanticKernel.Core.dll</Left>
29-
<Right>lib/net8.0/Microsoft.SemanticKernel.Core.dll</Right>
30-
<IsBaselineSuppression>true</IsBaselineSuppression>
31-
</Suppression>
3211
<Suppression>
3312
<DiagnosticId>CP0002</DiagnosticId>
3413
<Target>M:Microsoft.SemanticKernel.AIContextExtensions.AddFromAIContext(System.Collections.Generic.ICollection{Microsoft.SemanticKernel.KernelPlugin},Microsoft.SemanticKernel.AIContext,System.String)</Target>
3514
<Left>lib/netstandard2.0/Microsoft.SemanticKernel.Core.dll</Left>
3615
<Right>lib/netstandard2.0/Microsoft.SemanticKernel.Core.dll</Right>
3716
<IsBaselineSuppression>true</IsBaselineSuppression>
3817
</Suppression>
39-
<Suppression>
40-
<DiagnosticId>CP0002</DiagnosticId>
41-
<Target>M:Microsoft.SemanticKernel.Data.TextSearchProvider.#ctor(Microsoft.SemanticKernel.Data.ITextSearch,Microsoft.SemanticKernel.Data.TextSearchProviderOptions)</Target>
42-
<Left>lib/netstandard2.0/Microsoft.SemanticKernel.Core.dll</Left>
43-
<Right>lib/netstandard2.0/Microsoft.SemanticKernel.Core.dll</Right>
44-
<IsBaselineSuppression>true</IsBaselineSuppression>
45-
</Suppression>
46-
<Suppression>
47-
<DiagnosticId>CP0002</DiagnosticId>
48-
<Target>M:Microsoft.SemanticKernel.Memory.Mem0Provider.#ctor(System.Net.Http.HttpClient,Microsoft.SemanticKernel.Memory.Mem0ProviderOptions)</Target>
49-
<Left>lib/netstandard2.0/Microsoft.SemanticKernel.Core.dll</Left>
50-
<Right>lib/netstandard2.0/Microsoft.SemanticKernel.Core.dll</Right>
51-
<IsBaselineSuppression>true</IsBaselineSuppression>
52-
</Suppression>
53-
<Suppression>
54-
<DiagnosticId>CP0002</DiagnosticId>
55-
<Target>M:Microsoft.SemanticKernel.Memory.WhiteboardProvider.#ctor(Microsoft.Extensions.AI.IChatClient,Microsoft.SemanticKernel.Memory.WhiteboardProviderOptions)</Target>
56-
<Left>lib/netstandard2.0/Microsoft.SemanticKernel.Core.dll</Left>
57-
<Right>lib/netstandard2.0/Microsoft.SemanticKernel.Core.dll</Right>
58-
<IsBaselineSuppression>true</IsBaselineSuppression>
59-
</Suppression>
6018
</Suppressions>

0 commit comments

Comments
 (0)