Skip to content

Commit 883bc60

Browse files
VpOfEngineeringgavin-aguiarAzureFunctionsPythonbrettsam
authored
4.19.1 hotfix (#9249)
* Update Python Worker Version to 4.13.0 (#9246) Co-authored-by: AzureFunctionsPython <[email protected]> * installing .net core 3.1 in CI (#9231) --------- Co-authored-by: gavin-aguiar <[email protected]> Co-authored-by: AzureFunctionsPython <[email protected]> Co-authored-by: Brett Samblanet <[email protected]>
1 parent f1cecb8 commit 883bc60

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

build/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<LangVersion>latest</LangVersion>
66
<MajorVersion>4</MajorVersion>
77
<MinorVersion>19</MinorVersion>
8-
<PatchVersion>0</PatchVersion>
8+
<PatchVersion>1</PatchVersion>
99
<BuildNumber Condition="'$(BuildNumber)' == '' ">0</BuildNumber>
1010
<PreviewVersion></PreviewVersion>
1111

build/install-dotnet.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
steps:
2+
- task: PowerShell@2
3+
displayName: 'Install .NET 3.1'
4+
inputs:
5+
targetType: 'inline'
6+
script: |
7+
Invoke-WebRequest 'https://dot.net/v1/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'
8+
./dotnet-install.ps1 -InstallDir 'C:\Program Files\dotnet' -Verbose -Channel 3.1
29
- task: PowerShell@2
310
displayName: 'Install .NET 6'
411
inputs:
@@ -8,3 +15,4 @@ steps:
815
# Official release versions can be found at: https://dotnet.microsoft.com/download/dotnet/6.0
916
# Newer versions can be found at: https://github.com/dotnet/installer#installers-and-binaries
1017
./dotnet-install.ps1 -InstallDir 'C:\Program Files\dotnet' -Verbose -Channel 6.0
18+
& dotnet --info

build/python.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<ItemGroup>
3-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.11.0" />
3+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.13.0" />
44
</ItemGroup>
55
</Project>

release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Please add your release notes in the following format:
44
- My change description (#PR)
55
-->
6-
- Update Python Worker Version to [4.11.0](https://github.com/Azure/azure-functions-python-worker/releases/tag/4.11.0)
6+
- Update Python Worker Version to [4.13.0](https://github.com/Azure/azure-functions-python-worker/releases/tag/4.13.0)
77
- Update Java Worker Version to [2.10.0](https://github.com/Azure/azure-functions-java-worker/releases/tag/2.10.0)
88
- Update PowerShell Worker 7.2 to 4.0.2719 [Release Note](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.2719)
99
- Update Node.js Worker Version to [3.6.0](https://github.com/Azure/azure-functions-nodejs-worker/releases/tag/v3.6.0)

test/WebJobs.Script.Tests/WebJobs.Script.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<PackageReference Include="appinsights.testlogger" Version="1.0.0" />
5757
<PackageReference Include="FluentAssertions" Version="5.9.0" />
5858
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.0" />
59-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.11.0" />
59+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.13.0" />
6060
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
6161
<PackageReference Include="Moq" Version="4.9.0" />
6262
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">

0 commit comments

Comments
 (0)