aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorEli Zaretskii2025-08-16 14:41:41 +0300
committerEli Zaretskii2025-08-16 14:41:41 +0300
commiteb8d0d7afe39c827cd4e35e97cd2c8bf4dbdf73e (patch)
tree7e24056fdc430174e98fc5c498829c6dad52deb4 /admin
parent4983985b80e853c4b85543478d1bb0eac248768f (diff)
parent3516479b58d9678def0310d951f0e3ed2acb68c6 (diff)
downloademacs-eb8d0d7afe39c827cd4e35e97cd2c8bf4dbdf73e.tar.gz
emacs-eb8d0d7afe39c827cd4e35e97cd2c8bf4dbdf73e.zip
Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
Diffstat (limited to 'admin')
-rw-r--r--admin/admin.el9
-rw-r--r--admin/make-tarball.txt16
2 files changed, 20 insertions, 5 deletions
diff --git a/admin/admin.el b/admin/admin.el
index 542556a65e0..7e761c3f1f4 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -128,8 +128,13 @@ Root must be the root of an Emacs source tree."
128 (submatch (1+ (in "0-9.")))))) 128 (submatch (1+ (in "0-9."))))))
129 (set-version-in-file root "java/AndroidManifest.xml.in" 129 (set-version-in-file root "java/AndroidManifest.xml.in"
130 (apply #'format "%02d%02d%02d000" 130 (apply #'format "%02d%02d%02d000"
131 (mapcar #'string-to-number 131 (let ((ver-list
132 (split-string version "\\."))) 132 (mapcar #'string-to-number
133 (split-string version "\\."))))
134 ;; Official releases are XX.YY, not XX.YY.ZZ
135 (if (= 2 (length ver-list))
136 (setq ver-list (append ver-list '(0))))
137 ver-list))
133 admin-android-version-code-regexp) 138 admin-android-version-code-regexp)
134 (set-version-in-file root "nt/README.W32" version 139 (set-version-in-file root "nt/README.W32" version
135 (rx (and "version" (1+ space) 140 (rx (and "version" (1+ space)
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
388Copy new etc/MACHINES to MACHINES and CONTRIBUTE to CONTRIBUTE 388Copy new etc/MACHINES to MACHINES and CONTRIBUTE to CONTRIBUTE
389 389
390For every new release, a banner is displayed on top of the emacs.html 390For every new release, a banner is displayed on top of the emacs.html
391page. Uncomment and the release banner in emacs.html. Keep it on the 391page. Uncomment the release banner in emacs.html. Keep it on the page
392page for about a month, then comment it again. The new release banner 392for about a month, then comment it again. The new release banner looks
393looks like this: 393like this:
394 394
395 <div class="release-banner"> 395 <div class="release-banner">
396 <div class="container"> 396 <div class="container">
@@ -398,6 +398,16 @@ looks like this:
398 </div> 398 </div>
399 </div> 399 </div>
400 400
401Add the information about the new release in the "Releases" section of
402emacs.html, which begins like this:
403
404 <div class="releases">
405 <div class="container">
406 <!-- NOTE: There is no need to keep more than the two most recent -->
407 <!-- major versions here. -->
408
409 <h2 id="Releases">
410
401Also, make sure the copyright years at the bottom of emacs.html are 411Also, make sure the copyright years at the bottom of emacs.html are
402up-to-date. 412up-to-date.
403 413