Difference between revisions of "Releasing Minetest"

From Minetest Developer Wiki
Jump to navigation Jump to search
(→‎Upload Windows package to somewhere: removed old history which isn't that interesting, unless you're a minetest archeologist)
 
(113 intermediate revisions by 13 users not shown)
Line 1: Line 1:
 +
== Checklist ==
 +
 +
<pre>
 +
- Feature freeze
 +
  - [ ] Announced
 +
  - [ ] Release candidate advertised
 +
  - [ ] Weblate sources regenerated and strings frozen
 +
- Pre-release (day of release)
 +
  - [ ] Autogenerate files
 +
  - [ ] Correct special strings on Weblate (`LANG_CODE`)
 +
  - [ ] Update translations from Weblate
 +
  - [ ] Update changelog
 +
  - [ ] Update credits in repo
 +
  - [ ] Update credits on website
 +
  - [ ] (Minor/Major) Write blog post
 +
  - [ ] Ensure protocol version codes have been bumped
 +
- Release
 +
  - [ ] Run bump_version and verify
 +
  - [ ] Push new tag
 +
  - [ ] Tag minetest_android_deps repo
 +
  - [ ] Build and upload Windows version
 +
  - [ ] Build and upload Android version
 +
  - [ ] (Minor/Major) Publish blog post
 +
  - [ ] Create forum topic
 +
  - [ ] Notify rubenwardy to announce on Twitter, etc.
 +
  - [ ] Notify downstream maintainers
 +
</pre>
 +
 +
== Feature Freeze ==
 +
 +
=== Announce a feature freeze ===
 +
 +
(''Skip for patch releases'')
 +
Usually, a '''feature freeze for one week is announced in #minetest-dev'''. New features aren't accepted in this time and people focus on finding and fixing bugs.
 +
To find high priority issues faster, consider linking a release candidate binary to get more test results (for master: GitLab pipeline). This release candidate is usually also posted on the forums (News section).
 +
 +
The feature freeze and release date is set by core developers.
 +
 +
=== Autogenerate files ===
 +
 +
Ensure that the <code>language</code> setting enum values contain <code>en</code>: there is no "en" directory, but Minetest supports it.
 +
Autogenerate config file examples such as <code>minetest.conf.example</code> (see bottom of <code>builtin/mainmenu/dlg_settings_advanced.lua</code>), etc.
 +
 +
Also update the [[Translation|translation]] templates:
 +
 +
* Engine: Regenerate Gettext files with <code>util/updatepo.sh</code>. Note that before that, you most likely want to [[#Update_translations_from_Weblate|import existing changes]] first.
 +
* Builtin: Change directory to <code>builtin</code>, then run <code>util/mod_translation_updater.py</code> from there
 +
* Any default games: Change to game's <code>mods</code> directory, then run <code>util/mod_translation_updater.py -r</code> from there
 +
 +
Read [[Translation]] for details.
 +
 +
=== Update source strings on Weblate ===
 +
 +
Make sure that the source strings on hosted.weblate.org are up-to-date. Please also notify translators so they can start working.
 +
 +
Do '''not''' just blindly run the scripts without checking. Check if the source strings on Weblate were ''actually'' updated. A simple way to check is to look at any translation that was at 100% (on Weblate) ''before'' the update. After the update, the percentage should drop because of new strings. If it didn't drop but you know there are new strings in Minetest, this means the update failed.
 +
 
== Before releasing ==
 
== Before releasing ==
  
'''Usually, a feature freeze for one week is announced in #minetest-dev.''' New features aren't accepted in this time and people focus on finding and fixing bugs.
+
=== Verify special translation strings ===
 +
 
 +
The translation files contain a special string: [https://hosted.weblate.org/translate/minetest/minetest/en/?q=LANG_CODE&checksum=&offset=1#translations LANG_CODE] (see [[Translating]]).
 +
 
 +
Verify that all *.po files have a valid value for these strings because translators frequently misunderstand them and enter an invalid value. Fix any invalid values on Weblate by either entering the correct one or by removing the bad translation.
 +
 
 +
=== Update translations from Weblate ===
 +
 
 +
'''How to do this''' -> [[Translating#How_to_merge_translations_from_Hosted_Weblate]]
 +
 
 +
If doing a backported release, you can use the following command to cherry-pick all translation commits from weblate:
 +
<source>
 +
git log --reverse --pretty=format:"%h" $BASE..weblate/master -- po | xargs -L1 git cherry-pick
 +
</source>
 +
 
 +
BASE is the commit on master to start from when looking for translation commits. This commit should be newer than the last translation commit on the backport-X branch.
 +
 
 +
=== Update main menu credits ===
  
The feature freeze and release date is set by core developers.
+
This consists of:
 +
* Making use of <code>util/gather_git_credits.py</code>
 +
** edit the <code>REVS_ACTIVE</code> variable to contain the version number of two major versions in the past (e.g. 5.6.0 if you are releasing 5.8.0)
 +
** run the script
 +
* Editing <code>builtin/mainmenu/tab_about.lua</code> and putting the results there
 +
* Don't forget to update the list of core developers if that changed
 +
 
 +
=== Update website credits ===
 +
 
 +
Once the credits are decided on in the previous step, update the website to be in sync with the mainmenu: https://github.com/minetest/minetest.github.io/blob/master/credits.html
 +
 
 +
=== Update changelog ===
 +
 
 +
Changelog can be found [[Changelog|here]].
 +
 
 +
=== Ensure protocol version codes have been bumped ===
 +
 
 +
If not a patch release: ensure that <code>PROTOCOL_VERSION</code> has been increased since the last release. ([https://github.com/minetest/minetest/issues/11603 deciding discussion])
 +
 
 +
If formspec features have been added: ensure <code>LATEST_FORMSPEC_VERSION</code> has been increased since the last release.
  
 
== The process ==
 
== The process ==
Line 11: Line 104:
 
=== Update version in source ===
 
=== Update version in source ===
  
* '''Define''' a new version number in CMakeLists.txt, update doc/lua-api.txt and doc/menu_lua_api.txt. Comment out the line that sets VERSION_PATCH to ${VERSION_PATCH}-dev.  
+
The process with patch releases is slightly different but the script will take care of it correctly in any case.
* '''Update''' Android version code build/android/Makefile ANDROID_VERSION_CODE (around line 27)
+
 
* '''Commit'''.
+
* '''Define''' a new version number by running <code>util/bump_version.sh</code>. Verify that this script correctly:
* '''Tag''' the version in local git to allow the cmake versioning script to remove the git hash from the version. Do not push the tag to GitHub yet.
+
** changes TRUE to FALSE for the line ''set(DEVELOPMENT_BUILD TRUE)'' in CMakeLists.txt
 +
** updates the version number and release date in misc/net.minetest.minetest.appdata.xml
 +
** increments ''versionCode'' in build/android/build.gradle by 2
 +
** and commits.
 +
* '''Tag''' the version in local git (the script does this) to allow the cmake versioning script to remove the git hash from the version. Do not push the tag to GitHub yet.
 
* '''Build''', get newest minetest_game, run and check if the thing seems to be working.
 
* '''Build''', get newest minetest_game, run and check if the thing seems to be working.
  
 
=== Build Windows version ===
 
=== Build Windows version ===
  
* Visual Studio 2010 currently makes best results ''(?)''.
+
* These are built for 32-bit and 64-bit using either Visual Studio or MinGW.
* Currently built by BlockMen (0.4.10). They have sound, gettext, cURL and TTF support.
+
** We do not provide official debug builds.
* Since 0.4.8, a MinGW build is also included, built by sfan5.
+
** Since 5.0, the 64-bit builds are compiled with GC64-enabled LuaJIT (to avoid [https://github.com/minetest/minetest/issues/2988 #2988])
 +
* As of [https://github.com/minetest/minetest/pull/14098 December 2023], we use the '''mingw''' artifacts of the "windows" CI workflow.
 +
** Extract the outer ZIP file so that users only have one ZIP file to extract (should be named <code>minetest-5.x.x-win64.zip</code>)
 +
 
 +
Note that the correct build only shows up after the release commit has been pushed to Github. You can do this in a temporary branch to not pollute stable-5 / the tag until the release is actually done.
 +
 
 +
→ → → '''''Make sure that the Windows builds work before continuing to do anything''''' ← ← ←
  
'''''Be sure that the Windows build works before continuing to do anything!'''''
+
==== Mini checklist of things to test ====
  
==== Tweak Windows package a bit ====
+
''Note'': Don't cheat on this by testing in Wine, it has happened that things crash/break in wine while they are fine on real Windows.
  
* Include minetest_game or other subgames that were decided on before the release.
+
* check that the build identifies itself as 5.x.x not 5.x.x-dev or 5.x.x-abc4de7
* Include msvcr100.dll and wrap_oal.dll in the package (bin/). The latter is one of the OpenAL DLLs that the CMake install scripts are currently missing. Those making official builds probably already know what they are doing.
+
* click some menu buttons
 +
* create world with MTG, enter it, exit back to menu
 +
* open multiplayer tab, attempt to join a server
 +
* install a package from CDB, uninstall it again
 +
* enable dynamic shadows, join in-game and look
  
=== Upload Windows package to somewhere ===
+
=== Upload packages to somewhere ===
  
* Windows packages are hosted at GitHub: https://github.com/minetest/minetest/releases.
+
* All official builds are hosted at Github: https://github.com/minetest/minetest/releases
 +
* Windows builds are uploaded by whoever builds them
 +
* The macOS build is created by [https://github.com/minetest/minetest/actions/workflows/macos.yml Github Actions]
 +
** you will only be able to grab the build '''after''' the release has been pushed
 +
** download the artifact, unpack it once, you should have a <code>minetest-5.x.x-osx.zip</code>. This is then uploaded.
 +
* Android APKs are also uploaded here when they're done
  
 
=== Update branches and tags of minetest and minetest_game on GitHub ===
 
=== Update branches and tags of minetest and minetest_game on GitHub ===
  
* See previous tags. Use the same tag for all of them; eg. "0.4.4".
+
Tagging is handled by the script for the engine. For MTG you can just create an annotated tag pointing to the latest commit and push it.
* GitHub's release functionality can be used if preferred.
+
 
* The new release should be merged to the stable-0.4 branch on both minetest and minetest_game.
+
The new release should be merged to the stable-5 branch on both minetest and minetest_game.
 +
'''Its important to merge, and not just rebase''', so that git describe works.
 +
 
 +
==== The problem on the stable-5 branch ====
 +
Usually, merging releases onto the stable branch just consists of adding the commits to the branch, as it contains direct ancestors of master commits, and git can do a fast forward. During release/freeze of 5.0.1 (both minetest and minetest_game), the ancestor rule has been broken.
 +
 
 +
Therefore, you'll generate merge commits, but this shouldn't be a problem. In the case of merge conflicts, ensure that the changes on stable-5 are all discarded in favor of the tagged commit at master, by doing a merge commit like:
 +
 
 +
    git checkout version-tag
 +
    git merge -s ours origin/stable-5
 +
    git push origin HEAD:stable-5
  
=== Update links on minetest.net ===
+
=== Tag Android deps ===
  
Some people from the community can edit the [http://minetest.net minetest.net] page ''(celeron55, PilzAdam, rubenwardy, BlockMen, Jordach, sfan5)''.
+
Create a new tag [https://github.com/minetest/minetest_android_deps/tags on this repo] with the version number of the release.
 +
This is to make it easier to figure out which state an APK was built from.
  
=== Write a release notice ===
+
=== Update Launchpad stable build to get Ubuntu builds for the new version ===
 +
 
 +
celeron55, rubenwardy, and ShadowNinja have access.
 +
 
 +
Process:
 +
 
 +
* Go to [https://code.launchpad.net/~minetestdevs/minetest-c55/+git/upstream minetest-c55/upstream] and [https://code.launchpad.net/~minetestdevs/minetest-c55/+git/upstream_game minetest-c55/upstream_game] and click "start import".
 +
* First, find out the commit hashes of the minetest and minetest_game git repos corresponding to the release.
 +
* Now visit the [https://code.launchpad.net/~minetestdevs/+recipe/minetest-stable recipe].
 +
* At the bottom of the page there is a section called "Recipe contents". In this section you need to edit the recipe. Make sure you update:
 +
** The version number at the end of the first line. Doing this is a must otherwise there would be duplicate packages which would lead to a fail. The version number has a format like <code>5.1.1-ppa0</code>. You should keep the ppa postfix so that it's easy to differentiate the package by origin, ppa or upstream Debian.
 +
** The commit hash of the main minetest repo in the second line.
 +
* Check whether everything has been updated correctly.
 +
* Click the green "Request builds" link, enable the newer distro versions, and click confirm.
 +
 
 +
The build has two steps: first it assembles the source code and uploads it, then it builds the code.
 +
If the first step completed successfully but the second one failed, you need to update the version number in the recipe (e.g. 1.2.3-ppa1) before rebuilding.
 +
 
 +
=== Build and publish Android APK ===
  
Usually a new topic in the [https://forum.minetest.net/viewforum.php?f=18 News section] of the forum. '''Changelog can be found [[Changelog|here]].'''
+
'''nerzhul''' or '''rubenwardy''' have access to Google Play. Both also hold the signature keys for the app.
  
=== Update stuff on launchpad to get Ubuntu builds for the new version ===
+
==== Signing APKs for the Play Store ====
  
'''Juhani Numminen''' hasn't been around in a long while, so celeron55 or PilzAdam must update Launchpad.
+
* Run the Android build process as usual
 +
* '''Sign the package:''' <code>"~/Android/Sdk/build-tools/29.0.3/apksigner" sign --ks keystore-minetest.jks .../app-armeabi-v7a-release.apk</code>
 +
* EDIT: You can use Android Studio to generate bundles/apks if you upgrade the jks
  
=== Notify other known package maintainers ===
+
==== Creating Native Debug Symbols ====
  
* '''emptty''' (@ chat.freenode.net) maintains Debian packages.
+
* Copy native/build/intermediates/ndkBuild/release/obj/local/ to new folder
* '''Zeitgeist_/damiel''' (@ chat.freenode.net) is the proxy-maintainer for Minetest in Gentoo.
+
* Remove all but .so files from new folder
<!-- * ''TODO: Find more.''-->
+
* Check the .so contain debug info using the file command
 +
* <code>zip -r symbols.zip .</code>
  
 
== After releasing ==
 
== After releasing ==
Line 62: Line 206:
 
=== Reenable -dev version suffix ===
 
=== Reenable -dev version suffix ===
  
* '''Uncomment''' the line near CMakeLists.txt:22 that sets VERSION_PATCH to ${VERSION_PATCH}-dev.
+
(''Skip for patch releases'')
 +
Check that the util/bump_version.sh script did the following steps:
 +
 
 +
* '''Update''' the version number in CMakeLists.txt and the titles of doc/client_lua_api.txt and doc/menu_lua_api.txt
 +
* '''Change''' FALSE to TRUE for the line ''set(DEVELOPMENT_BUILD FALSE)'' in CMakeLists.txt. This will add the -dev suffix to the version name again.
 
* '''Commit.'''
 
* '''Commit.'''
  
 +
=== Write a release notice ===
 +
 +
* Don't forget to edit the minetest.net page ([https://github.com/minetest/minetest.github.io Repo]).
 +
** currently you will need to update machine readable metadata in _data/release.yml and downloads.html itself.
 +
* Post a new topic in the [https://forum.minetest.net/viewforum.php?f=18 News section] of the forum. '''See [[Changelog]].'''
 +
** It is customary to sticky the newest release topic and lock older ones.
 +
* Add a new post to the [https://github.com/minetest/blog/ blog]
 +
* Announce the release on the [https://twitter.com/MinetestProject Twitter account]. rubenwardy has access.
 +
 +
=== Update wiki version template ===
 +
 +
There is a special wiki template containing the version number at [https://wiki.minetest.net/Template:Version], used to make updating various wiki pages by hand less tedious. Update it so it includes the latest version.
 +
 +
=== Notify known package maintainers ===
 +
 +
* '''Arch Linux'''/Manjaro: can be flagged outdated on the [https://archlinux.org/packages/extra/x86_64/minetest/ package page]
 +
* '''Alpine Linux''': can be flagged outdated on the [https://pkgs.alpinelinux.org/package/edge/community/x86_64/minetest package page]
 +
* '''Debian'''/Ubuntu: has [https://tracker.debian.org/pkg/minetest own version tracking], no need to contact
 +
* '''F-Droid''': has volunteer maintainers, if nobody notices consider opening an issue [https://gitlab.com/fdroid/fdroiddata/-/issues here]
 +
* '''Snap''': open an issue (or contribute) [https://github.com/snapcrafters/minetest here]
 +
* '''Flatpak''':  open an issue (or contribute) [https://github.com/flathub/net.minetest.Minetest here]
 +
* '''Gentoo''': has [https://packages.gentoo.org/packages/games-action/minetest own version tracking], no need to contact
 +
 +
You can find out how quick various distro are to adopt new versions [https://repology.org/project/minetest/history here on repology].
 +
 +
=== ContentDB ===
 +
 +
==== Add a new version ====
 +
 +
Add the new version to the drop-down list of compatible Minetest versions that authors can select for their things.
 +
 +
Note that CDB tells Minetest versions apart by their protocol version so this is obviously not applicable to patch releases.
 +
 +
People who have access: rubenwardy + ???
 +
 +
==== Package devtest ====
 +
 +
The Minetest Game package on ContentDB makes a new release automatically when a new tag is made.
 +
 +
The [https://content.minetest.net/packages/Minetest/devtest/ Development Test] package however needs to be released '''manually'''. Make a new release, upload a ZIP file with Development Test like it looks like the Minetest source tree in the stable branch, and set the minimum and maximum Minetest versions to the Minetest version it is intended for.
  
[[Category:Core]]
+
[[Category:Core Engine]]
 +
[[Category:Rules and Guidelines]]

Latest revision as of 11:04, 19 February 2024

Checklist

- Feature freeze
  - [ ] Announced
  - [ ] Release candidate advertised
  - [ ] Weblate sources regenerated and strings frozen
- Pre-release (day of release)
  - [ ] Autogenerate files
  - [ ] Correct special strings on Weblate (`LANG_CODE`)
  - [ ] Update translations from Weblate
  - [ ] Update changelog
  - [ ] Update credits in repo
  - [ ] Update credits on website
  - [ ] (Minor/Major) Write blog post
  - [ ] Ensure protocol version codes have been bumped
- Release
  - [ ] Run bump_version and verify
  - [ ] Push new tag
  - [ ] Tag minetest_android_deps repo
  - [ ] Build and upload Windows version
  - [ ] Build and upload Android version
  - [ ] (Minor/Major) Publish blog post
  - [ ] Create forum topic
  - [ ] Notify rubenwardy to announce on Twitter, etc.
  - [ ] Notify downstream maintainers

Feature Freeze

Announce a feature freeze

(Skip for patch releases) Usually, a feature freeze for one week is announced in #minetest-dev. New features aren't accepted in this time and people focus on finding and fixing bugs. To find high priority issues faster, consider linking a release candidate binary to get more test results (for master: GitLab pipeline). This release candidate is usually also posted on the forums (News section).

The feature freeze and release date is set by core developers.

Autogenerate files

Ensure that the language setting enum values contain en: there is no "en" directory, but Minetest supports it. Autogenerate config file examples such as minetest.conf.example (see bottom of builtin/mainmenu/dlg_settings_advanced.lua), etc.

Also update the translation templates:

  • Engine: Regenerate Gettext files with util/updatepo.sh. Note that before that, you most likely want to import existing changes first.
  • Builtin: Change directory to builtin, then run util/mod_translation_updater.py from there
  • Any default games: Change to game's mods directory, then run util/mod_translation_updater.py -r from there

Read Translation for details.

Update source strings on Weblate

Make sure that the source strings on hosted.weblate.org are up-to-date. Please also notify translators so they can start working.

Do not just blindly run the scripts without checking. Check if the source strings on Weblate were actually updated. A simple way to check is to look at any translation that was at 100% (on Weblate) before the update. After the update, the percentage should drop because of new strings. If it didn't drop but you know there are new strings in Minetest, this means the update failed.

Before releasing

Verify special translation strings

The translation files contain a special string: LANG_CODE (see Translating).

Verify that all *.po files have a valid value for these strings because translators frequently misunderstand them and enter an invalid value. Fix any invalid values on Weblate by either entering the correct one or by removing the bad translation.

Update translations from Weblate

How to do this -> Translating#How_to_merge_translations_from_Hosted_Weblate

If doing a backported release, you can use the following command to cherry-pick all translation commits from weblate:

git log --reverse --pretty=format:"%h" $BASE..weblate/master -- po | xargs -L1 git cherry-pick

BASE is the commit on master to start from when looking for translation commits. This commit should be newer than the last translation commit on the backport-X branch.

Update main menu credits

This consists of:

  • Making use of util/gather_git_credits.py
    • edit the REVS_ACTIVE variable to contain the version number of two major versions in the past (e.g. 5.6.0 if you are releasing 5.8.0)
    • run the script
  • Editing builtin/mainmenu/tab_about.lua and putting the results there
  • Don't forget to update the list of core developers if that changed

Update website credits

Once the credits are decided on in the previous step, update the website to be in sync with the mainmenu: https://github.com/minetest/minetest.github.io/blob/master/credits.html

Update changelog

Changelog can be found here.

Ensure protocol version codes have been bumped

If not a patch release: ensure that PROTOCOL_VERSION has been increased since the last release. (deciding discussion)

If formspec features have been added: ensure LATEST_FORMSPEC_VERSION has been increased since the last release.

The process

This is mostly done by several core developers.

Update version in source

The process with patch releases is slightly different but the script will take care of it correctly in any case.

  • Define a new version number by running util/bump_version.sh. Verify that this script correctly:
    • changes TRUE to FALSE for the line set(DEVELOPMENT_BUILD TRUE) in CMakeLists.txt
    • updates the version number and release date in misc/net.minetest.minetest.appdata.xml
    • increments versionCode in build/android/build.gradle by 2
    • and commits.
  • Tag the version in local git (the script does this) to allow the cmake versioning script to remove the git hash from the version. Do not push the tag to GitHub yet.
  • Build, get newest minetest_game, run and check if the thing seems to be working.

Build Windows version

  • These are built for 32-bit and 64-bit using either Visual Studio or MinGW.
    • We do not provide official debug builds.
    • Since 5.0, the 64-bit builds are compiled with GC64-enabled LuaJIT (to avoid #2988)
  • As of December 2023, we use the mingw artifacts of the "windows" CI workflow.
    • Extract the outer ZIP file so that users only have one ZIP file to extract (should be named minetest-5.x.x-win64.zip)

Note that the correct build only shows up after the release commit has been pushed to Github. You can do this in a temporary branch to not pollute stable-5 / the tag until the release is actually done.

→ → → Make sure that the Windows builds work before continuing to do anything ← ← ←

Mini checklist of things to test

Note: Don't cheat on this by testing in Wine, it has happened that things crash/break in wine while they are fine on real Windows.

  • check that the build identifies itself as 5.x.x not 5.x.x-dev or 5.x.x-abc4de7
  • click some menu buttons
  • create world with MTG, enter it, exit back to menu
  • open multiplayer tab, attempt to join a server
  • install a package from CDB, uninstall it again
  • enable dynamic shadows, join in-game and look

Upload packages to somewhere

  • All official builds are hosted at Github: https://github.com/minetest/minetest/releases
  • Windows builds are uploaded by whoever builds them
  • The macOS build is created by Github Actions
    • you will only be able to grab the build after the release has been pushed
    • download the artifact, unpack it once, you should have a minetest-5.x.x-osx.zip. This is then uploaded.
  • Android APKs are also uploaded here when they're done

Update branches and tags of minetest and minetest_game on GitHub

Tagging is handled by the script for the engine. For MTG you can just create an annotated tag pointing to the latest commit and push it.

The new release should be merged to the stable-5 branch on both minetest and minetest_game. Its important to merge, and not just rebase, so that git describe works.

The problem on the stable-5 branch

Usually, merging releases onto the stable branch just consists of adding the commits to the branch, as it contains direct ancestors of master commits, and git can do a fast forward. During release/freeze of 5.0.1 (both minetest and minetest_game), the ancestor rule has been broken.

Therefore, you'll generate merge commits, but this shouldn't be a problem. In the case of merge conflicts, ensure that the changes on stable-5 are all discarded in favor of the tagged commit at master, by doing a merge commit like:

   git checkout version-tag
   git merge -s ours origin/stable-5
   git push origin HEAD:stable-5

Tag Android deps

Create a new tag on this repo with the version number of the release. This is to make it easier to figure out which state an APK was built from.

Update Launchpad stable build to get Ubuntu builds for the new version

celeron55, rubenwardy, and ShadowNinja have access.

Process:

  • Go to minetest-c55/upstream and minetest-c55/upstream_game and click "start import".
  • First, find out the commit hashes of the minetest and minetest_game git repos corresponding to the release.
  • Now visit the recipe.
  • At the bottom of the page there is a section called "Recipe contents". In this section you need to edit the recipe. Make sure you update:
    • The version number at the end of the first line. Doing this is a must otherwise there would be duplicate packages which would lead to a fail. The version number has a format like 5.1.1-ppa0. You should keep the ppa postfix so that it's easy to differentiate the package by origin, ppa or upstream Debian.
    • The commit hash of the main minetest repo in the second line.
  • Check whether everything has been updated correctly.
  • Click the green "Request builds" link, enable the newer distro versions, and click confirm.

The build has two steps: first it assembles the source code and uploads it, then it builds the code. If the first step completed successfully but the second one failed, you need to update the version number in the recipe (e.g. 1.2.3-ppa1) before rebuilding.

Build and publish Android APK

nerzhul or rubenwardy have access to Google Play. Both also hold the signature keys for the app.

Signing APKs for the Play Store

  • Run the Android build process as usual
  • Sign the package: "~/Android/Sdk/build-tools/29.0.3/apksigner" sign --ks keystore-minetest.jks .../app-armeabi-v7a-release.apk
  • EDIT: You can use Android Studio to generate bundles/apks if you upgrade the jks

Creating Native Debug Symbols

  • Copy native/build/intermediates/ndkBuild/release/obj/local/ to new folder
  • Remove all but .so files from new folder
  • Check the .so contain debug info using the file command
  • zip -r symbols.zip .

After releasing

Reenable -dev version suffix

(Skip for patch releases) Check that the util/bump_version.sh script did the following steps:

  • Update the version number in CMakeLists.txt and the titles of doc/client_lua_api.txt and doc/menu_lua_api.txt
  • Change FALSE to TRUE for the line set(DEVELOPMENT_BUILD FALSE) in CMakeLists.txt. This will add the -dev suffix to the version name again.
  • Commit.

Write a release notice

  • Don't forget to edit the minetest.net page (Repo).
    • currently you will need to update machine readable metadata in _data/release.yml and downloads.html itself.
  • Post a new topic in the News section of the forum. See Changelog.
    • It is customary to sticky the newest release topic and lock older ones.
  • Add a new post to the blog
  • Announce the release on the Twitter account. rubenwardy has access.

Update wiki version template

There is a special wiki template containing the version number at [1], used to make updating various wiki pages by hand less tedious. Update it so it includes the latest version.

Notify known package maintainers

  • Arch Linux/Manjaro: can be flagged outdated on the package page
  • Alpine Linux: can be flagged outdated on the package page
  • Debian/Ubuntu: has own version tracking, no need to contact
  • F-Droid: has volunteer maintainers, if nobody notices consider opening an issue here
  • Snap: open an issue (or contribute) here
  • Flatpak: open an issue (or contribute) here
  • Gentoo: has own version tracking, no need to contact

You can find out how quick various distro are to adopt new versions here on repology.

ContentDB

Add a new version

Add the new version to the drop-down list of compatible Minetest versions that authors can select for their things.

Note that CDB tells Minetest versions apart by their protocol version so this is obviously not applicable to patch releases.

People who have access: rubenwardy + ???

Package devtest

The Minetest Game package on ContentDB makes a new release automatically when a new tag is made.

The Development Test package however needs to be released manually. Make a new release, upload a ZIP file with Development Test like it looks like the Minetest source tree in the stable branch, and set the minimum and maximum Minetest versions to the Minetest version it is intended for.