diff options
| author | Michael Albinus | 2025-06-29 11:03:05 +0200 |
|---|---|---|
| committer | Michael Albinus | 2025-06-29 11:03:05 +0200 |
| commit | bd04818e53be49f2a087de8a92cb02549f8c2407 (patch) | |
| tree | 066c84b17b297a32ebf3b9b4623de3b0d1101734 | |
| parent | 036c95bbf67368b8efff70f41274130c60865f33 (diff) | |
| download | emacs-bd04818e53be49f2a087de8a92cb02549f8c2407.tar.gz emacs-bd04818e53be49f2a087de8a92cb02549f8c2407.zip | |
Adapt Tramp versions
* doc/misc/trampver.texi:
* lisp/net/trampver.el (tramp-version): Adapt Tramp versions.
| -rw-r--r-- | doc/misc/trampver.texi | 2 | ||||
| -rw-r--r-- | lisp/net/trampver.el | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/misc/trampver.texi b/doc/misc/trampver.texi index 7e3238d70de..a6e305534aa 100644 --- a/doc/misc/trampver.texi +++ b/doc/misc/trampver.texi | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | 7 | ||
| 8 | @c In the Tramp GIT, the version number and the bug report address | 8 | @c In the Tramp GIT, the version number and the bug report address |
| 9 | @c are auto-frobbed from configure.ac. | 9 | @c are auto-frobbed from configure.ac. |
| 10 | @set trampver 2.8.0-pre | 10 | @set trampver 2.8.0 |
| 11 | @set trampurl https://www.gnu.org/software/tramp/ | 11 | @set trampurl https://www.gnu.org/software/tramp/ |
| 12 | @set tramp-bug-report-address tramp-devel@@gnu.org | 12 | @set tramp-bug-report-address tramp-devel@@gnu.org |
| 13 | @set emacsver 28.1 | 13 | @set emacsver 28.1 |
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el index 1100b349283..65e60c0464a 100644 --- a/lisp/net/trampver.el +++ b/lisp/net/trampver.el | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | ;; Maintainer: Michael Albinus <michael.albinus@gmx.de> | 7 | ;; Maintainer: Michael Albinus <michael.albinus@gmx.de> |
| 8 | ;; Keywords: comm, processes | 8 | ;; Keywords: comm, processes |
| 9 | ;; Package: tramp | 9 | ;; Package: tramp |
| 10 | ;; Version: 2.8.0-pre | 10 | ;; Version: 2.8.0 |
| 11 | ;; Package-Requires: ((emacs "28.1")) | 11 | ;; Package-Requires: ((emacs "28.1")) |
| 12 | ;; Package-Type: multi | 12 | ;; Package-Type: multi |
| 13 | ;; URL: https://www.gnu.org/software/tramp/ | 13 | ;; URL: https://www.gnu.org/software/tramp/ |
| @@ -40,7 +40,7 @@ | |||
| 40 | ;; ./configure" to change them. | 40 | ;; ./configure" to change them. |
| 41 | 41 | ||
| 42 | ;;;###tramp-autoload | 42 | ;;;###tramp-autoload |
| 43 | (defconst tramp-version "2.8.0-pre" | 43 | (defconst tramp-version "2.8.0" |
| 44 | "This version of Tramp.") | 44 | "This version of Tramp.") |
| 45 | 45 | ||
| 46 | ;;;###tramp-autoload | 46 | ;;;###tramp-autoload |
| @@ -76,7 +76,7 @@ | |||
| 76 | ;; Check for Emacs version. | 76 | ;; Check for Emacs version. |
| 77 | (let ((x (if (not (string-version-lessp emacs-version "28.1")) | 77 | (let ((x (if (not (string-version-lessp emacs-version "28.1")) |
| 78 | "ok" | 78 | "ok" |
| 79 | (format "Tramp 2.8.0-pre is not fit for %s" | 79 | (format "Tramp 2.8.0 is not fit for %s" |
| 80 | (replace-regexp-in-string "\n" "" (emacs-version)))))) | 80 | (replace-regexp-in-string "\n" "" (emacs-version)))))) |
| 81 | (unless (string-equal "ok" x) (error "%s" x))) | 81 | (unless (string-equal "ok" x) (error "%s" x))) |
| 82 | 82 | ||