summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG16
-rw-r--r--docs/transient.org4
-rw-r--r--docs/transient.texi4
-rw-r--r--lisp/transient.el6
4 files changed, 17 insertions, 13 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e50027c..54a9275 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,32 +1,36 @@
# -*- mode: org -*-
-* v0.9.0 UNRELEASED
+* v0.9.0 2025-06-01
- Key descriptions (as returned by ~key-description~ and understood by
~kbd~) are now the only key binding format understood by Transient.
- Vectors are no longer supported.
+ Vectors are no longer supported. c4e0cba6
- Vectors are now preferred to identify a suffix or group in a menu by
coordinates. It is still possible, but discouraged, to use a list.
+ 1933dda9
- The internal format used to store menu layouts has been improved.
The old format is still supported and translated on the fly when
encountered. Instead of rely on that translation, users are advised
to recompile dependent packages after updating Transient to this
- release.
+ release. bcc0bf83
- Added new macro ~transient-define-group~, which defines one or more
groups of suffixes to be included in multiple menus. Such included
groups are no longer immediately inlined when referenced in a menu
definition, which makes it possible for users to make changes to
included group and have those change affect all menus that include
- them.
+ them. bcc0bf83
- Added new macro ~transient-inline-group~, which inlines an included
- group into a specific menu.
+ group into a specific menu. bcc0bf83
- Added new, experimental suffix class ~transient-cons-option~, which is
intended for situations where ~transient-args~ should return an alist,
- instead of a list of strings (arguments).
+ instead of a list of strings (arguments). 81727bac, e8eb3ebd
+
+- While a transient menu is active, ~inhibit-quit~ is now set to t.
+ #388
* v0.8.8 2025-05-01
diff --git a/docs/transient.org b/docs/transient.org
index 9f89c1e..ef87a86 100644
--- a/docs/transient.org
+++ b/docs/transient.org
@@ -7,7 +7,7 @@
#+texinfo_dir_category: Emacs misc features
#+texinfo_dir_title: Transient: (transient).
#+texinfo_dir_desc: Transient Commands
-#+subtitle: for version 0.8.8
+#+subtitle: for version 0.9.0
#+setupfile: .orgconfig
@@ -20,7 +20,7 @@ resource to get over that hurdle is Psionic K's interactive tutorial,
available at https://github.com/positron-solutions/transient-showcase.
#+texinfo: @noindent
-This manual is for Transient version 0.8.8.
+This manual is for Transient version 0.9.0.
#+texinfo: @insertcopying
:END:
diff --git a/docs/transient.texi b/docs/transient.texi
index fd69c45..6175079 100644
--- a/docs/transient.texi
+++ b/docs/transient.texi
@@ -31,7 +31,7 @@ General Public License for more details.
@finalout
@titlepage
@title Transient User and Developer Manual
-@subtitle for version 0.8.8
+@subtitle for version 0.9.0
@author Jonas Bernoulli
@page
@vskip 0pt plus 1filll
@@ -53,7 +53,7 @@ resource to get over that hurdle is Psionic K's interactive tutorial,
available at @uref{https://github.com/positron-solutions/transient-showcase}.
@noindent
-This manual is for Transient version 0.8.8.
+This manual is for Transient version 0.9.0.
@insertcopying
@end ifnottex
diff --git a/lisp/transient.el b/lisp/transient.el
index ce7093b..e5b309b 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -6,8 +6,8 @@
;; Homepage: https://github.com/magit/transient
;; Keywords: extensions
-;; Package-Version: 0.8.8
-;; Package-Requires: ((emacs "26.1") (compat "30.1.0.0") (seq "2.24"))
+;; Package-Version: 0.9.0
+;; Package-Requires: ((emacs "26.1") (compat "30.1") (seq "2.24"))
;; SPDX-License-Identifier: GPL-3.0-or-later
@@ -34,7 +34,7 @@
;;; Code:
-(defconst transient-version "0.8.8")
+(defconst transient-version "0.9.0")
(require 'cl-lib)
(require 'compat)