summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/release.sh
diff options
context:
space:
mode:
authorOlivia Kinnear <git@superatomic.dev>2026-04-14 11:13:03 -0500
committerOlivia Kinnear <git@superatomic.dev>2026-04-14 11:13:03 -0500
commit87c3d519aa1fe21dcaa5c978180701ecdb5bdda7 (patch)
treecc80f41879d188b7cc3d83ec9e987f9dd16f41f7 /scripts/release.sh
parent5181b8952cfdc45df2bc540b48e45bd64377f667 (diff)
feat(build): rename `io.neovim.nvim` to `org.neovim.nvim`
Diffstat (limited to 'scripts/release.sh')
-rwxr-xr-xscripts/release.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/release.sh b/scripts/release.sh
index f7dd151efe..6d4a53a87e 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -12,7 +12,7 @@
# - CMakeLists.txt: Unset NVIM_VERSION_PRERELEASE
# - CMakeLists.txt: Unset NVIM_API_PRERELEASE
# - Create test/functional/fixtures/api_level_N.mpack
-# - Add date and version to runtime/io.neovim.nvim.appdata.xml
+# - Add date and version to runtime/org.neovim.nvim.appdata.xml
# - Tag the commit.
# Create the "version bump" commit:
# - CMakeLists.txt: Set NVIM_VERSION_PRERELEASE to "-dev"
@@ -64,8 +64,8 @@ _do_release_commit() {
fi
$__sed -i.bk 's,(<releases>),\1\
- <release date="'"${__DATE}"'" version="'"${__VERSION}"'"/>,' runtime/io.neovim.nvim.appdata.xml
- git add runtime/io.neovim.nvim.appdata.xml
+ <release date="'"${__DATE}"'" version="'"${__VERSION}"'"/>,' runtime/org.neovim.nvim.appdata.xml
+ git add runtime/org.neovim.nvim.appdata.xml
if ! test "$ARG1" = '--use-current-commit' ; then
echo "Building changelog since ${__LAST_TAG}..."
@@ -81,7 +81,7 @@ _do_bump_commit() {
$__sed -i.bk 's/(NVIM_VERSION_PRERELEASE) ""/\1 "-dev"/' CMakeLists.txt
$__sed -i.bk 's/set\((NVIM_VERSION_PATCH) [[:digit:]]/set(\1 ?/' CMakeLists.txt
rm -f CMakeLists.txt.bk
- rm -f runtime/io.neovim.nvim.appdata.xml.bk
+ rm -f runtime/org.neovim.nvim.appdata.xml.bk
nvim +'/NVIM_VERSION' +1new +'exe "norm! iUpdate version numbers!!!"' \
-O CMakeLists.txt