diff options
| -rw-r--r-- | CHANGELOG | 8 | ||||
| -rw-r--r-- | docs/transient.org | 4 | ||||
| -rw-r--r-- | docs/transient.texi | 4 | ||||
| -rw-r--r-- | lisp/transient.el | 4 |
4 files changed, 12 insertions, 8 deletions
@@ -1,8 +1,12 @@ # -*- mode: org -*- -* v0.9.1 UNRELEASED +* v0.9.1 2025-06-03 - As an additional safety measure, unconditionally reset ~inhibit-quit~ - when the emergency exit is taken. + when the emergency exit is taken. b326421f + +- Including groups that are still defined as a variable, instead of + using ~transient-define-group~ (added in v0.9.0), failed in some cases + and prevented the menu from being displayed at all. #389 * v0.9.0 2025-06-01 diff --git a/docs/transient.org b/docs/transient.org index ef87a86..7280b64 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.9.0 +#+subtitle: for version 0.9.1 #+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.9.0. +This manual is for Transient version 0.9.1. #+texinfo: @insertcopying :END: diff --git a/docs/transient.texi b/docs/transient.texi index 6175079..0599c4e 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.9.0 +@subtitle for version 0.9.1 @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.9.0. +This manual is for Transient version 0.9.1. @insertcopying @end ifnottex diff --git a/lisp/transient.el b/lisp/transient.el index c2eb5ef..29388a9 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -6,7 +6,7 @@ ;; Homepage: https://github.com/magit/transient ;; Keywords: extensions -;; Package-Version: 0.9.0 +;; Package-Version: 0.9.1 ;; 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.9.0") +(defconst transient-version "0.9.1") (require 'cl-lib) (require 'compat) |
