Re: [PATCH] Update ERC version to 5.5
"J.P." <[email protected]>
| Newsgroups | gmane.emacs.erc.general |
|---|---|
| Message-ID | <[email protected]> |
v5. Drop some merged parts. Bump Compat version.
0000-v4-v5.diff
(text/x-patch, 555 B)
From a2d33fd365c10e1f699a412c0a6f010b7feef4fa Mon Sep 17 00:00:00 2001 From: "F. Jason Park" <[email protected]> Date: Tue, 14 Feb 2023 17:29:10 -0800 Subject: [PATCH 0/1] *** NOT A PATCH *** *** BLURB HERE *** F. Jason Park (1): Release ERC 5.5 doc/misc/erc.texi | 2 +- lisp/erc/erc.el | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) Range-diff: 1: 8afdd246ecf < -: ----------- ; Prepare to update ERC version to 5.5 2: 430cd965bba < -: ----------- Release ERC 5.5 -: ----------- > 1: a2d33fd365c Release ERC 5.5 -- 2.39.1
0001-Release-ERC-5.5.patch
(text/x-patch, 1.9 KB)
From a2d33fd365c10e1f699a412c0a6f010b7feef4fa Mon Sep 17 00:00:00 2001 From: "F. Jason Park" <[email protected]> Date: Mon, 13 Feb 2023 23:27:50 -0800 Subject: [PATCH 1/1] Release ERC 5.5 * doc/misc/erc.texi: Update ERCVER to 5.5. * lisp/erc/erc.el: Increment main version header to 5.5. Update Compat version in package-requires header to 29.1.3.4. Also update `customize-package-emacs-version-alist' entry mapping 5.5 to 29.1. (erc-version): Update value to 5.5. --- doc/misc/erc.texi | 2 +- lisp/erc/erc.el | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi index d5ec0f48e1c..b80affbc954 100644 --- a/doc/misc/erc.texi +++ b/doc/misc/erc.texi @@ -2,7 +2,7 @@ @c %**start of header @setfilename ../../info/erc.info @settitle ERC Manual -@set ERCVER 5.4.1 +@set ERCVER 5.5 @set ERCDIST as distributed with Emacs @value{EMACSVER} @include docstyle.texi @syncodeindex fn cp diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index d35907a1677..69bdb5d71b1 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -12,8 +12,8 @@ ;; David Edmondson ([email protected]) ;; Michael Olson ([email protected]) ;; Kelvin White ([email protected]) -;; Version: 5.4.1 -;; Package-Requires: ((emacs "27.1") (compat "28.1.2.0")) +;; Version: 5.5 +;; Package-Requires: ((emacs "27.1") (compat "29.1.3.4")) ;; Keywords: IRC, chat, client, Internet ;; URL: https://www.gnu.org/software/emacs/erc.html @@ -71,7 +71,7 @@ (require 'iso8601) (eval-when-compile (require 'subr-x) (require 'url-parse)) -(defconst erc-version "5.4.1" +(defconst erc-version "5.5" "This version of ERC.") (defvar erc-official-location @@ -86,7 +86,8 @@ erc-official-location '(ERC ("5.2" . "22.1") ("5.3" . "23.1") ("5.4" . "28.1") - ("5.4.1" . "29.1"))) + ("5.4.1" . "29.1") + ("5.5" . "29.1"))) (defgroup erc nil "Emacs Internet Relay Chat client." -- 2.39.1