From: Glenn Morris Date: Sat, 20 Apr 2019 17:02:58 +0000 (-0700) Subject: * admin/admin.el (set-version): Add NEWS headers for a .50 version. X-Git-Tag: emacs-26.2.90~89^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aae8cc3304f1d769f06794fa10d9b66f74a6198c;p=emacs.git * admin/admin.el (set-version): Add NEWS headers for a .50 version. --- diff --git a/admin/admin.el b/admin/admin.el index c1f6174874b..fda6708d4cd 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -138,7 +138,10 @@ Root must be the root of an Emacs source tree." (if (eq 2 (length newversion)) 0 1)))) (majorbump (and oldversion (not (equal oldmajor newmajor)))) (minorbump (and oldversion (not majorbump) - (not (equal (cadr oldversion) (cadr newversion))))) + (or (not (equal (cadr oldversion) + (cadr newversion))) + (and (equal (cadr oldversion) (cadr newversion)) + (equal (nth 2 newversion) 50))))) (newsfile (expand-file-name "etc/NEWS" root)) (oldnewsfile (expand-file-name (format "etc/NEWS.%s" oldmajor) root))) (unless (> (length newversion) 2) ; pretest or release candidate?