Update to .NET SDK 7.0.111 and Runtime 7.0.11
Resolves: RHEL-2000
This commit is contained in:
parent
7fbd0fce26
commit
b8bdddf8a3
1
.gitignore
vendored
1
.gitignore
vendored
@ -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
|
||||
|
@ -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 <omajid@redhat.com> - 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 <omajid@redhat.com> - 7.0.110-2
|
||||
- Update to .NET SDK 7.0.110 and Runtime 7.0.10
|
||||
- Resolves: RHBZ#2228571
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (dotnet-v7.0.110.tar.gz) = 52d106aafb649bd6b4b7676d85e95791ab134efbc9ae6a37f89722ce40bf571b6e7b82b651ae91d801ea3270be0e2b71f6106764298bd7e0de2e704f5fd19bb2
|
||||
SHA512 (dotnet-v7.0.111.tar.gz) = 3cb62adf8d723aacfbac1917e08b6141c91f34b78cbff570f1551ef502eb1f6e92f9793abddbb6a337f355f08c9f3fd00724765d72d25e3e2b558013714371d9
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user