branch: externals/compat commit 0ffcc8bf3f2f654d60c724e5bed30552e55fc45d Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Set new development version 29.1.1.0-git --- NEWS.org | 4 +++- compat.el | 2 +- compat.texi | 6 +++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/NEWS.org b/NEWS.org index 46a24cd154..73a333cc6b 100644 --- a/NEWS.org +++ b/NEWS.org @@ -1,5 +1,7 @@ #+title: compat.el - Changelog +* Development of "Compat" Version 29.1.1.0 + * Release of "Compat" Version 29.1.0.1 - Add multiple new tests for existing APIs. @@ -14,7 +16,7 @@ define separate compatibility function definitions for functions which changed their calling convention or behavior. These compatibility definitions can be looked up using ~compat-function~ and called with ~compat-call~. For example ~assoc~ - can be called with a ~TESTFN~ since Emacs 29. In Emacs 28 and older the calling + can be called with a ~TESTFN~ since Emacs 26. In Emacs 25 and older the calling convention was ~(assoc KEY ALIST)~. In order to use the new calling convention you can use ~(compat-call assoc KEY ALIST TESTFN)~. - Deprecate all ~compat-*~ prefixed functions. Instead use the aforementioned diff --git a/compat.el b/compat.el index 764e035c60..f54a5c3c39 100644 --- a/compat.el +++ b/compat.el @@ -4,7 +4,7 @@ ;; Author: Philip Kaludercic <phil...@posteo.net>, Daniel Mendler <m...@daniel-mendler.de> ;; Maintainer: Daniel Mendler <m...@daniel-mendler.de>, Compat Development <~pkal/compat-de...@lists.sr.ht> -;; Version: 29.1.0.1 +;; Version: 29.1.1.0-git ;; URL: https://github.com/emacs-compat/compat ;; Package-Requires: ((emacs "24.4")) ;; Keywords: lisp diff --git a/compat.texi b/compat.texi index f46a2f46d3..7c005bb27b 100644 --- a/compat.texi +++ b/compat.texi @@ -31,7 +31,7 @@ modify this GNU manual.” @finalout @titlepage @title "Compat" Manual -@subtitle For version 29.1.0.0 +@subtitle For version 29.1.1.0 @author Philip Kaludercic, Daniel Mendler @page @vskip 0pt plus 1filll @@ -46,7 +46,7 @@ modify this GNU manual.” This manual documents the usage of the "Compat" Emacs lisp library, the forward-compatibility library for Emacs Lisp, corresponding to -version 29.1.0.0. +version 29.1.1.0. @insertcopying @end ifnottex @@ -115,7 +115,7 @@ The intended use-case for this library is for package developers to add as a dependency in the header: @example -;; Package-Requires: ((emacs "24.4") (compat "29.1.0.0")) +;; Package-Requires: ((emacs "24.4") (compat "29.1.1.0")) @end example There is no need to depend on @code{emacs} 24.4 specifically. One can