aboutsummaryrefslogtreecommitdiff
path: root/bump_version
diff options
context:
space:
mode:
authorMarc Brooks <IDisposable@gmail.com>2025-02-03 19:48:59 -0600
committerGitHub <noreply@github.com>2025-02-03 19:48:59 -0600
commite8cbcde02ebd930a5eeb6c95e0875a9e30acb3e8 (patch)
tree2ecd43f232012c8f037f4cd6fee4168e46d01aa3 /bump_version
parent6dc61a430ba3a8480399309f277e5debfd6403ba (diff)
parentd376b5fbc7cf3ae7440a606a9e885d70605956bd (diff)
Merge branch 'master' into sort-nfo-data
Diffstat (limited to 'bump_version')
-rwxr-xr-xbump_version4
1 files changed, 4 insertions, 0 deletions
diff --git a/bump_version b/bump_version
index 72bbbfbf5..6d08dc72f 100755
--- a/bump_version
+++ b/bump_version
@@ -28,6 +28,7 @@ jellyfin_subprojects=(
Emby.Naming/Emby.Naming.csproj
src/Jellyfin.Extensions/Jellyfin.Extensions.csproj
)
+issue_template_file="./.github/ISSUE_TEMPLATE/issue report.yml"
new_version="$1"
new_version_sed="$( cut -f1 -d'-' <<<"${new_version}" )"
@@ -56,6 +57,9 @@ for subproject in ${jellyfin_subprojects[@]}; do
sed -i "s|${old_version}|${new_version_sed}|g" ${subproject}
done
+# Set the version in the GitHub issue template file
+sed -i "s|${old_version}|${new_version_sed}|g" ${issue_template_file}
+
# Stage the changed files for commit
git add .
git status -v