cider 2026-07-23

Does this look right?

Version: 20260723.1407
     Commit: 27b7e2f78f143c8efe46a52adafa033576b24b55
;; CIDER 2.0.1-snapshot (package: 20260723.1407), nREPL 1.5.2
I guess I'm surprised to see -snapshot

(package-refresh-contents)

(package-version-join
 (package-desc-version
  (cadr (assoc 'cider package-archive-contents))))

;; "20260723.1407"

Interesting, I don't see that commit in melpa yet

@bozhidar fyi, "Add optional Embark integration" https://github.com/clojure-emacs/cider/compare/26cc96a13dc68772129d3884804485b40af5f2ab...315bbd902fb5464b1a6278e8241d8d143ff4a6aa broke my (embark-act). This is probably Elpaca doing something wonky, I hope it's isolated to my local, just wanted to give you heads up. If someone else complains, most likely they just need to rebuild it.

I'll take a closer look. I thought this was safe, but I guess I was mistaken. 😅

Oh shoot, I found something else. There's a circular dependency. cider-embark.el does (require 'cider) at the top, and cider.el does (require 'cider-embark) right before (provide 'cider). So if embark loads before cider, they load each other endlessly.

1

I'll have that fixed soon.

Of course. Sorry for being a "bad news messenger". fwiw, I love embark integration, I'm sure I'll be using it a lot.

1
❤️ 1

In the end I’ve decided it was probably a mistake to ship this as a bundled module and I just moved the embark config to the docs. Thanks for flagging this!