[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/transient 2a680c21e2 2/2: Release version 0.7.3
From: |
Jonas Bernoulli |
Subject: |
[elpa] externals/transient 2a680c21e2 2/2: Release version 0.7.3 |
Date: |
Sat, 13 Jul 2024 17:07:30 -0400 (EDT) |
branch: externals/transient
commit 2a680c21e2be0b055e0e801d43c92792e5305acc
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>
Release version 0.7.3
---
CHANGELOG | 13 +++++++++++++
docs/transient.org | 4 ++--
docs/transient.texi | 4 ++--
lisp/transient.el | 2 +-
4 files changed, 18 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
index e8e117848f..40eeef6b63 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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 c68b47d0cd..1845ae4e4c 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 a96ea3b301..0ef12e08a5 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 333035fb18..b276988613 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