Update release version to 6.3.0 and date to 10-31-2023 (#308)

This commit is contained in:
TiejunZhou
2023-10-23 15:31:03 +08:00
committed by GitHub
parent 9ee2738aec
commit 13b700fd3e
1366 changed files with 3664 additions and 3644 deletions

20
scripts/update_patch.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
if [ "$#" -ne 2 ]; then
echo "Usage: $0 \"<version>\" \"<date>\""
exit 1
fi
cd $(dirname `realpath $0`)/..
current_version="6\\.x"
source_dirs="common common_modules common_smp ports ports_module ports_smp ports_arch utility"
file_list=$(find $source_dirs -type f \( -name "*.[chsS]" -o -name "*.arm" -o -name "*.src" -o -name "*readme*" -o -name "*.mip" \) -print)
sed -i "s/$current_version /$1/g" $file_list
sed -i "s/$current_version/$1/g" $file_list
sed -i "s/xx-xx-xxxx/$2/g" $file_list
# Update version in port files
source_dirs="ports ports_module ports_smp ports_arch"
file_list=$(find $source_dirs -type f -name "*.h" -print)
sed -i "/\"Copyright/,/[0-9]\.[0-9]/s/[0-9]\.[0-9\.]\+/$1/" $file_list