fix: correct version string in obsoletion calls
This commit is contained in:
parent
4f5f9d6065
commit
6077b6f0d8
5 changed files with 8 additions and 8 deletions
|
@ -13,9 +13,9 @@
|
|||
;;
|
||||
;;; Commands
|
||||
|
||||
(defcli-obsolete! ((build b)) (sync "--rebuild") "v3.0.0")
|
||||
(defcli-obsolete! ((build b)) (sync "--rebuild") "3.0.0")
|
||||
|
||||
(defcli-obsolete! ((purge p)) (gc) "v3.0.0")
|
||||
(defcli-obsolete! ((purge p)) (gc) "3.0.0")
|
||||
|
||||
;; TODO Rename to "doom gc" and move to its own file
|
||||
(defcli! (gc)
|
||||
|
|
|
@ -89,7 +89,7 @@ list is returned as-is."
|
|||
;;
|
||||
;;; Public library
|
||||
|
||||
(define-obsolete-function-alias 'doom-enlist 'ensure-list "v3.0.0")
|
||||
(define-obsolete-function-alias 'doom-enlist 'ensure-list "3.0.0")
|
||||
|
||||
(defun doom-unquote (exp)
|
||||
"Return EXP unquoted."
|
||||
|
|
|
@ -12,7 +12,7 @@ Emacs.")
|
|||
(defvar doom-projectile-cache-purge-non-projects nil
|
||||
"If non-nil, non-projects are purged from the cache on `kill-emacs-hook'.")
|
||||
|
||||
(define-obsolete-variable-alias 'doom-projectile-fd-binary 'doom-fd-executable "v3.0.0")
|
||||
(define-obsolete-variable-alias 'doom-projectile-fd-binary 'doom-fd-executable "3.0.0")
|
||||
(defvar doom-fd-executable (cl-find-if #'executable-find (list "fdfind" "fd"))
|
||||
"The filename of the fd executable.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue