diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-07-13 23:02:18 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-07-13 23:02:18 +0200 |
| commit | 2a680c21e2be0b055e0e801d43c92792e5305acc (patch) | |
| tree | 172c8d1bd97f6bdb17796e23eda7ecee3c78a824 | |
| parent | ed732cb35f6a6753930df10a0f66a6e4efd29e6d (diff) | |
Release version 0.7.3v0.7.3
| -rw-r--r-- | CHANGELOG | 13 | ||||
| -rw-r--r-- | docs/transient.org | 4 | ||||
| -rw-r--r-- | docs/transient.texi | 4 | ||||
| -rw-r--r-- | lisp/transient.el | 2 |
4 files changed, 18 insertions, 5 deletions
@@ -1,4 +1,17 @@ # -*- mode: org -*- +* v0.7.3 2024-07-13 + +- Refactored code responsible for inserting columns. + +Bug fix: + +- The ~transient-current-*~ variables are intended to only be used by + suffix commands, when they are invoked from a prefix. Previously + they were only cleared when the prefix is ultimately exited, which + meant that they unintentionally were accessible in timers. Now the + values of these variables are nil when used outside their intended + scope. 0e0ece32, f2cb28a5 + * v0.7.2 2024-06-24 - Added support for adding suffixes that activate value presets. #183 diff --git a/docs/transient.org b/docs/transient.org index c68b47d..1845ae4 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.7.2 +#+subtitle: for version 0.7.3 #+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.7.2. +This manual is for Transient version 0.7.3. #+texinfo: @insertcopying :END: diff --git a/docs/transient.texi b/docs/transient.texi index a96ea3b..0ef12e0 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.7.2 +@subtitle for version 0.7.3 @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.7.2. +This manual is for Transient version 0.7.3. @insertcopying @end ifnottex diff --git a/lisp/transient.el b/lisp/transient.el index 333035f..b276988 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -6,7 +6,7 @@ ;; Homepage: https://github.com/magit/transient ;; Keywords: extensions -;; Package-Version: 0.7.2 +;; Package-Version: 0.7.3 ;; Package-Requires: ((emacs "26.1") (compat "30.0.0.0") (seq "2.24")) ;; SPDX-License-Identifier: GPL-3.0-or-later |
