Skip to content

Commit

Permalink
Remove preview suffixes (#2666)
Browse files Browse the repository at this point in the history
Updated dependencies for v2.13.0 release
  • Loading branch information
davidmrdavid authored Nov 13, 2023
1 parent 392fde4 commit 6c10422
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<MajorVersion>2</MajorVersion>
<MinorVersion>13</MinorVersion>
<PatchVersion>0</PatchVersion>
<Version>$(MajorVersion).$(MinorVersion).$(PatchVersion)-preview.1</Version>
<Version>$(MajorVersion).$(MinorVersion).$(PatchVersion)</Version>
<FileVersion>$(MajorVersion).$(MinorVersion).$(PatchVersion)</FileVersion>
<AssemblyVersion>$(MajorVersion).0.0.0</AssemblyVersion>
<Company>Microsoft Corporation</Company>
Expand Down Expand Up @@ -99,14 +99,14 @@
<!-- Explicitly pinned transitive dependencies with CVE vulnerabilities.-->
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets" Version="2.2.1" />
<!-- The gRPC dependencies in this package are not compatible with older frameworks, like .NET Core 2.x -->
<PackageReference Include="Microsoft.DurableTask.Grpc" Version="1.1.0-preview.1" />
<PackageReference Include="Microsoft.DurableTask.Grpc" Version="1.1.0" />
<PackageReference Include="Grpc.Core" Version="2.46.6" /> <!-- Bring this in until we move to hosted RPC -->
</ItemGroup>

<!-- Common dependencies across all targets -->
<ItemGroup>
<PackageReference Include="Microsoft.Azure.DurableTask.Core" Version="2.16.0-preview.2" />
<PackageReference Include="Microsoft.Azure.DurableTask.AzureStorage" Version="1.17.0-preview.2" />
<PackageReference Include="Microsoft.Azure.DurableTask.Core" Version="2.16.0" />
<PackageReference Include="Microsoft.Azure.DurableTask.AzureStorage" Version="1.17.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers" Version="0.5.*" />
<!-- Build-time dependencies -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.*" PrivateAssets="All" />
Expand Down
2 changes: 1 addition & 1 deletion src/Worker.Extensions.DurableTask/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
using Microsoft.Azure.Functions.Worker.Extensions.Abstractions;

// TODO: Find a way to generate this dynamically at build-time
[assembly: ExtensionInformation("Microsoft.Azure.WebJobs.Extensions.DurableTask", "2.13.0-preview.1")]
[assembly: ExtensionInformation("Microsoft.Azure.WebJobs.Extensions.DurableTask", "2.13.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Core" Version="1.15.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Abstractions" Version="1.3.0" />
<PackageReference Include="Microsoft.DurableTask.Client.Grpc" Version="1.1.0-preview.2" />
<PackageReference Include="Microsoft.DurableTask.Worker.Grpc" Version="1.1.0-preview.2" />
<PackageReference Include="Microsoft.DurableTask.Client.Grpc" Version="1.1.0" />
<PackageReference Include="Microsoft.DurableTask.Worker.Grpc" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 6c10422

Please sign in to comment.