Change ERC version to 5.7-git

* doc/misc/erc.texi: Change ERCVER to 5.7 without a "-git" suffix.
* lisp/erc/erc.el (erc-version): Change working version to 5.7-git.  Do
the same for the package "Version" header.  Bump required Compat version
to 31.  Add new 5.7 to Emacs 32.1 mapping in top-level modification of
`customize-package-emacs-version-alist'.
This commit is contained in:
F. Jason Park 2026-05-11 22:16:09 -07:00
parent 98c28606d2
commit 08dc13ea94
2 changed files with 6 additions and 5 deletions

View file

@ -3,7 +3,7 @@
@setfilename ../../info/erc.info
@settitle ERC Manual
@documentlanguage en
@set ERCVER 5.6.2
@set ERCVER 5.7
@set ERCDIST as distributed with Emacs @value{EMACSVER}
@include docstyle.texi
@syncodeindex fn cp

View file

@ -12,8 +12,8 @@
;; David Edmondson (dme@dme.org)
;; Michael Olson (mwolson@gnu.org)
;; Kelvin White (kwhite@gnu.org)
;; Version: 5.6.2
;; Package-Requires: ((emacs "27.1") (compat "29.1.4.5"))
;; Version: 5.7-git
;; Package-Requires: ((emacs "27.1") (compat "31"))
;; Keywords: IRC, chat, client, Internet
;; URL: https://www.gnu.org/software/emacs/erc.html
@ -70,7 +70,7 @@
(require 'auth-source)
(eval-when-compile (require 'subr-x))
(defconst erc-version "5.6.2"
(defconst erc-version "5.7-git"
"This version of ERC.")
(defvar erc-official-location
@ -89,7 +89,8 @@
("5.5" . "29.1")
("5.6" . "30.1")
("5.6.1" . "31.1")
("5.6.2" . "31.1")))
("5.6.2" . "31.1")
("5.7" . "32.1")))
(defgroup erc nil
"Emacs Internet Relay Chat client."