From b8bdddf8a38c03586be6b801fbd3022268e90a52 Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Tue, 12 Sep 2023 17:22:21 -0400 Subject: [PATCH] Update to .NET SDK 7.0.111 and Runtime 7.0.11 Resolves: RHEL-2000 --- .gitignore | 1 + dotnet7.0.spec | 10 +++++++--- sources | 2 +- update-release | 11 +++++++++-- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index cd0682f..da8c3b2 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /dotnet-v7.0.107.tar.gz /dotnet-v7.0.109.tar.gz /dotnet-v7.0.110.tar.gz +/dotnet-v7.0.111.tar.gz diff --git a/dotnet7.0.spec b/dotnet7.0.spec index 8ef7d49..df9a89f 100644 --- a/dotnet7.0.spec +++ b/dotnet7.0.spec @@ -6,10 +6,10 @@ # until that's done, disable LTO. This has to happen before setting the flags below. %define _lto_cflags %{nil} -%global host_version 7.0.10 -%global runtime_version 7.0.10 +%global host_version 7.0.11 +%global runtime_version 7.0.11 %global aspnetcore_runtime_version %{runtime_version} -%global sdk_version 7.0.110 +%global sdk_version 7.0.111 %global sdk_feature_band_version %(echo %{sdk_version} | cut -d '-' -f 1 | sed -e 's|[[:digit:]][[:digit:]]$|00|') %global templates_version %{runtime_version} #%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }') @@ -618,6 +618,10 @@ export COMPlus_LTTng=0 %changelog +* Tue Sep 12 2023 Omair Majid - 7.0.111-2 +- Update to .NET SDK 7.0.111 and Runtime 7.0.11 +- Resolves: RHEL-2000 + * Wed Aug 09 2023 Omair Majid - 7.0.110-2 - Update to .NET SDK 7.0.110 and Runtime 7.0.10 - Resolves: RHBZ#2228571 diff --git a/sources b/sources index 9a58d40..2f480fa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (dotnet-v7.0.110.tar.gz) = 52d106aafb649bd6b4b7676d85e95791ab134efbc9ae6a37f89722ce40bf571b6e7b82b651ae91d801ea3270be0e2b71f6106764298bd7e0de2e704f5fd19bb2 +SHA512 (dotnet-v7.0.111.tar.gz) = 3cb62adf8d723aacfbac1917e08b6141c91f34b78cbff570f1551ef502eb1f6e92f9793abddbb6a337f355f08c9f3fd00724765d72d25e3e2b558013714371d9 diff --git a/update-release b/update-release index ef8091c..e112771 100755 --- a/update-release +++ b/update-release @@ -95,10 +95,17 @@ comment="Update to .NET SDK ${sdk_version} and Runtime ${runtime_version}" commit_message="$comment " for bug_id in "${bug_ids[@]}"; do - comment="$comment + if [[ $bug =~ ^[[:digit:]]+$ ]]; then + comment="$comment - Resolves: RHBZ#$bug_id" - commit_message="$commit_message + commit_message="$commit_message Resolves: RHBZ#$bug_id" + else + comment="$comment +- Resolves: $bug_id" + commit_message="$commit_message +Resolves: $bug_id" + fi done echo "$commit_message" > git-commit-message