Skip to content

Commit 6ac6e35

Browse files
authored
Worker packages release prep - 2.1.0 (#3171)
* Version bump and release notes updates for worker package release 2.1.0 * Fix assembly version in source gen test.
1 parent 06e6302 commit 6ac6e35

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

release_notes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
- My change description (#PR/#issue)
55
-->
66

7-
### Microsoft.Azure.Functions.Worker (metapackage) <version>
7+
### Microsoft.Azure.Functions.Worker (metapackage) 2.1.0
88

99
- `AZURE_FUNCTIONS_` environment variables are now loaded correctly when using `FunctionsApplicationBuilder`. (#2878)
1010

11-
### Microsoft.Azure.Functions.Worker.Core <version>
11+
### Microsoft.Azure.Functions.Worker.Core 2.1.0
1212

1313
- Support for function metadata transforms (#3145)
1414

15-
### Microsoft.Azure.Functions.Worker.Grpc <version>
15+
### Microsoft.Azure.Functions.Worker.Grpc 2.1.0
1616

1717
- Updated to use the new metadata manage and leverage metadata transforms (#3145)

src/DotNetWorker.Core/DotNetWorker.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<RootNamespace>Microsoft.Azure.Functions.Worker.Core</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>0</MinorProductVersion>
12+
<MinorProductVersion>1</MinorProductVersion>
1313
<PatchProductVersion>0</PatchProductVersion>
1414
</PropertyGroup>
1515

src/DotNetWorker.Grpc/DotNetWorker.Grpc.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<RootNamespace>Microsoft.Azure.Functions.Worker.Grpc</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>0</MinorProductVersion>
12+
<MinorProductVersion>1</MinorProductVersion>
1313
<PatchProductVersion>0</PatchProductVersion>
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1515
</PropertyGroup>

src/DotNetWorker/DotNetWorker.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<RootNamespace>Microsoft.Azure.Functions.Worker</RootNamespace>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<MajorProductVersion>2</MajorProductVersion>
12-
<MinorProductVersion>0</MinorProductVersion>
12+
<MinorProductVersion>1</MinorProductVersion>
1313
<PatchProductVersion>0</PatchProductVersion>
1414
</PropertyGroup>
1515

test/Sdk.Generator.Tests/FunctionExecutor/DependentAssemblyTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the MIT License. See License.txt in the project root for license information.
33

44
using System.Reflection;
@@ -139,7 +139,7 @@ public DirectFunctionExecutor(global::Microsoft.Azure.Functions.Worker.IFunction
139139
140140
private global::Microsoft.Azure.Functions.Worker.Invocation.IFunctionExecutor CreateDefaultExecutorInstance(global::Microsoft.Azure.Functions.Worker.FunctionContext context)
141141
{
142-
var defaultExecutorFullName = "Microsoft.Azure.Functions.Worker.Invocation.DefaultFunctionExecutor, Microsoft.Azure.Functions.Worker.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c";
142+
var defaultExecutorFullName = "Microsoft.Azure.Functions.Worker.Invocation.DefaultFunctionExecutor, Microsoft.Azure.Functions.Worker.Core, Version=2.1.0.0, Culture=neutral, PublicKeyToken=551316b6919f366c";
143143
var defaultExecutorType = global::System.Type.GetType(defaultExecutorFullName);
144144
145145
return ActivatorUtilities.CreateInstance(context.InstanceServices, defaultExecutorType) as global::Microsoft.Azure.Functions.Worker.Invocation.IFunctionExecutor;

0 commit comments

Comments
 (0)