releases

cjohansen 2026-06-26T07:08:26.889079Z

https://github.com/cjohansen/nexus: Data-driven action dispatch, ideal for UI development https://clojars.org/no.cjohansen/nexus/versions/2026.06.3 โ€ข Add support for using with #C03U8L2NXNC @borkdude gratitude โ€ข Fix unreachable code warning @teodorlu gratitude

7
๐ŸŽ‰ 9
cjohansen 2026-06-26T07:14:02.604439Z

https://github.com/cjohansen/replicant: build data-driven UIs with hiccup https://clojars.org/no.cjohansen/replicant/versions/2026.06.2 โ€ข Add support for using with #C03U8L2NXNC @borkdude gratitude

7
๐ŸŽ‰ 12
lispyclouds 2026-06-26T07:29:18.503919Z

https://github.com/lispyclouds/contajners An idiomatic, data-driven, REPL friendly clojure client for OCI container engines. 1.0.9: Support Podman 6.0.0, Docker 1.55 and more versions, improved api sync process, bump deps. Happy contajning! ๐Ÿ“ฆ

๐ŸŽ‰ 2
whilo 2026-06-26T08:06:03.043369Z

๐Ÿงต ansatz 0.2 โ€” "Verified Clojure via Lean 4" โ€” the kernel + DSL underneath (and what the assistant uses to check the rules it writes), now much easier to pick up. If you already write malli-instrumented Clojure, it's the gradual next step โ€” keep your schema, change defn โ†’ a/defn:

clojure
(require '[ansatz.core :as a] '[malli.core :as m])
(a/load-init!)                          ; bundled Lean Init, zero setup (straight from the jar)

(m/=> dbl [:=> [:cat :int] :int])       ; just a malli schema
(a/defn dbl [x] (+ x x))                ; defn โ†’ a/defn โ€” now machine-checked, still plain Clojure
(dbl 21)                                ; => 42
โ€ข Batteries included, from Clojars โ€” (a/load-init!) loads a bundled Lean Init environment from the jar, no store to build; full Init / Mathlib fetched on demand. โ€ข malli support โ€” m/=> schemas become kernel signatures; [:map โ€ฆ] โ†’ named-field records (keyword access verifies, runtime stays plain maps); [:int {:min 1}] โ†’ refinements you still use as plain numbers. โ€ข Better tactics โ€” faithful funext, simp only / simp_all only, a split cluster, omega improvements, ac_rfl. โ€ข Bugfixes โ€” omega hypothesis handling, codegen, several simp universe fixes. Repos: https://github.com/replikativ/ansatz ยท https://github.com/replikativ/wandler