Update to .NET SDK 6.0.122 and Runtime 6.0.22
Resolves: RHEL-1997
This commit is contained in:
parent
4957341276
commit
4340031cd9
1
.gitignore
vendored
1
.gitignore
vendored
@ -20,3 +20,4 @@
|
||||
/dotnet-v6.0.118.tar.gz
|
||||
/dotnet-v6.0.120.tar.gz
|
||||
/dotnet-v6.0.121.tar.gz
|
||||
/dotnet-v6.0.122.tar.gz
|
||||
|
@ -20,10 +20,10 @@
|
||||
# until that's done, disable LTO. This has to happen before setting the flags below.
|
||||
%define _lto_cflags %{nil}
|
||||
|
||||
%global host_version 6.0.21
|
||||
%global runtime_version 6.0.21
|
||||
%global host_version 6.0.22
|
||||
%global runtime_version 6.0.22
|
||||
%global aspnetcore_runtime_version %{runtime_version}
|
||||
%global sdk_version 6.0.121
|
||||
%global sdk_version 6.0.122
|
||||
%global sdk_feature_band_version %(echo %{sdk_version} | 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 }')
|
||||
@ -609,6 +609,10 @@ rm -rf %{buildroot}%{_libdir}/dotnet/packs/NETStandard.Library.Ref/2.1.0
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Sep 12 2023 Omair Majid <omajid@redhat.com> - 6.0.122-2
|
||||
- Update to .NET SDK 6.0.122 and Runtime 6.0.22
|
||||
- Resolves: RHEL-1997
|
||||
|
||||
* Wed Aug 09 2023 Omair Majid <omajid@redhat.com> - 6.0.121-2
|
||||
- Update to .NET SDK 6.0.121 and Runtime 6.0.21
|
||||
- Resolves: RHBZ#2228567
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (dotnet-v6.0.121.tar.gz) = 1492284860076b3582979f4e9d38676ca8c0535b273bf3b6be2f3ee81620d548e3c725b32c00ce2f8ac2d3b374e402f74b8d3df095e364e673cff9d8a5d210fd
|
||||
SHA512 (dotnet-v6.0.122.tar.gz) = 42a8399201fe5e239257ded8a0f2b857c8d7f853926918f7d94dfc29cb6e7c98af4d03a015d4f49b53ab69a899f2f0de109471d779beb24975650e6b5021a069
|
||||
|
@ -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
|
||||
if [[ $bug =~ ^[[:digit:]]+$ ]]; then
|
||||
comment="$comment
|
||||
- Resolves: RHBZ#$bug_id"
|
||||
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