Function: cider--strip-version-patch
cider--strip-version-patch is a byte-compiled function defined in
cider-connection.el.
Signature
(cider--strip-version-patch V)
Documentation
Strips everything but major.minor from the version, returning a version list.
V is the version string to strip the patch from.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-connection.el
(defun cider--strip-version-patch (v)
"Strips everything but major.minor from the version, returning a version list.
V is the version string to strip the patch from."
(seq-take (version-to-list v) 2))