From a3a69c89abfb249bca745965ccef982390ca008a Mon Sep 17 00:00:00 2001 From: westey <164392973+westey-m@users.noreply.github.com> Date: Fri, 18 Oct 2024 12:03:53 +0100 Subject: [PATCH] .Net: Set dll version number for vectordata.abstractions. (#9323) ### Motivation and Context The vectordata.abstractions.dll had the same version number as the other SK dlls, which is incorrect. It should have a version number matching it's nuget version number. ### Description - Setting the version number of the vectordata.abstractions.dll to 9.0.0.0 - Updating the vectordata.abstractions nuget version to today's date. - Upping the SK version to 1.24.1 ### Contribution Checklist - [x] The code builds clean without any errors or warnings - [x] 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 - [x] All unit tests pass, and I have added new tests where possible - [x] I didn't break anyone :smile: --- dotnet/nuget/nuget-package.props | 2 +- .../VectorData.Abstractions/VectorData.Abstractions.csproj | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dotnet/nuget/nuget-package.props b/dotnet/nuget/nuget-package.props index 14d18e93e0c5..7df8a786761b 100644 --- a/dotnet/nuget/nuget-package.props +++ b/dotnet/nuget/nuget-package.props @@ -1,7 +1,7 @@ - 1.24.0 + 1.24.1 $(VersionPrefix)-$(VersionSuffix) $(VersionPrefix) diff --git a/dotnet/src/Connectors/VectorData.Abstractions/VectorData.Abstractions.csproj b/dotnet/src/Connectors/VectorData.Abstractions/VectorData.Abstractions.csproj index 706d06e61877..d30601d10eff 100644 --- a/dotnet/src/Connectors/VectorData.Abstractions/VectorData.Abstractions.csproj +++ b/dotnet/src/Connectors/VectorData.Abstractions/VectorData.Abstractions.csproj @@ -9,7 +9,8 @@ - 9.0.0-preview.1.24515.1 + 9.0.0-preview.1.24518.1 + 9.0.0.0 Microsoft.Extensions.VectorData.Abstractions $(AssemblyName) Abstractions for vector database access.