From ebeca61755e61feed530179dd538b4f0f08862bc Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 14 Aug 2025 03:54:52 -0400 Subject: * admin/admin.el (set-version): Fix handling of official releases. --- admin/admin.el | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'admin') diff --git a/admin/admin.el b/admin/admin.el index 0f02ac8d9b1..66c83225aef 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -128,8 +128,13 @@ Root must be the root of an Emacs source tree." (submatch (1+ (in "0-9.")))))) (set-version-in-file root "java/AndroidManifest.xml.in" (apply #'format "%02d%02d%02d000" - (mapcar #'string-to-number - (split-string version "\\."))) + (let ((ver-list + (mapcar #'string-to-number + (split-string version "\\.")))) + ;; Official releases are XX.YY, not XX.YY.ZZ + (if (= 2 (length ver-list)) + (setq ver-list (append ver-list '(0)))) + ver-list)) admin-android-version-code-regexp) (set-version-in-file root "nt/README.W32" version (rx (and "version" (1+ space) -- cgit v1.2.1 From c17168ebed9b0ace53235aa34fff4e53ca8543d3 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 14 Aug 2025 15:13:07 +0300 Subject: ; * admin/make-tarball.txt: Fix typo and add details. --- admin/make-tarball.txt | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'admin') diff --git a/admin/make-tarball.txt b/admin/make-tarball.txt index 22e76a0ac2e..61d19e54b8e 100644 --- a/admin/make-tarball.txt +++ b/admin/make-tarball.txt @@ -388,9 +388,9 @@ add the new NEWS file as news/NEWS.xx.y Copy new etc/MACHINES to MACHINES and CONTRIBUTE to CONTRIBUTE For every new release, a banner is displayed on top of the emacs.html -page. Uncomment and the release banner in emacs.html. Keep it on the -page for about a month, then comment it again. The new release banner -looks like this: +page. Uncomment the release banner in emacs.html. Keep it on the page +for about a month, then comment it again. The new release banner looks +like this:
+Add the information about the new release in the "Releases" section of +emacs.html, which begins like this: + +