You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today you'd get a warning if cider-required-middleware-version is 0.22.1 and you're on cider-nrepl 0.22.2. I think it'd be best if we just ignored the patch segment of the version while doing this comparison.
The text was updated successfully, but these errors were encountered:
((not (string-prefix-p cider-required-middleware-version middleware-version))
(cider-emit-manual-warning "troubleshooting.html#_cider_complains_of_the_cider_nrepl_version"
"CIDER %s requires cider-nrepl %s+, but you're currently using cider-nrepl %s. The version mismatch might break some functionality!"
cider-version cider-required-middleware-version middleware-version)))))
It can't be done this way, as we also use the same version number to tell CIDER which cider-nrepl to load. It'd be adjust only the code that handles the warning. Emacs has a bunch of functions for comparing versions that will help with this.
Today you'd get a warning if
cider-required-middleware-version
is 0.22.1 and you're on cider-nrepl 0.22.2. I think it'd be best if we just ignored the patch segment of the version while doing this comparison.The text was updated successfully, but these errors were encountered: