Skip to content

Commit

Permalink
.Net: Set dll version number for vectordata.abstractions. (#9323)
Browse files Browse the repository at this point in the history
### 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

<!-- Before submitting this PR, please make sure: -->

- [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 😄
  • Loading branch information
westey-m authored Oct 18, 2024
1 parent ec98193 commit a3a69c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dotnet/nuget/nuget-package.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<!-- Central version prefix - applies to all nuget packages. -->
<VersionPrefix>1.24.0</VersionPrefix>
<VersionPrefix>1.24.1</VersionPrefix>
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</PackageVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />

<PropertyGroup>
<PackageVersion>9.0.0-preview.1.24515.1</PackageVersion>
<PackageVersion>9.0.0-preview.1.24518.1</PackageVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<Title>Microsoft.Extensions.VectorData.Abstractions</Title>
<PackageId>$(AssemblyName)</PackageId>
<PackageDescription>Abstractions for vector database access.
Expand Down

0 comments on commit a3a69c8

Please sign in to comment.