Update the CHANGELOG when releasing a new version

This commit is contained in:
Rodolphe Bréard 2023-08-11 19:49:59 +02:00
parent 8058629446
commit 8edc321b08

View file

@ -22,9 +22,11 @@ update_app_version()
{ {
local new_version="$1" local new_version="$1"
local tmp_file="package.json.tmp" local tmp_file="package.json.tmp"
local current_date=$(date "+%Y-%m-%d")
jq ".version = \"${new_version}\"" "package.json" >"${tmp_file}" jq ".version = \"${new_version}\"" "package.json" >"${tmp_file}"
mv "${tmp_file}" "package.json" mv "${tmp_file}" "package.json"
sed -i "s/## \[Unreleased\]/## \[${new_version}\] - ${current_date}/" "CHANGELOG.md"
} }
check_working_directory() check_working_directory()