File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11## CHANGES
22
3- * v0.13.next in progress
3+ * v0.13.0 -- 2025-09-20
4+ - add clj-kondo config export
45 - move to clj-commons; rename nses to ` clj-commons.* `
56 - switch to CLI / ` deps.edn ` / ` build.clj ` / ` bb.edn `
67 - add GitHub Actions for CI
Original file line number Diff line number Diff line change @@ -120,13 +120,13 @@ Usage
120120` deps.edn ` :
121121
122122``` clojure
123- org.clj-commons/slingshot {:mvn/version " 0.13.next " }
123+ org.clj-commons/slingshot {:mvn/version " 0.13.0 " }
124124```
125125
126126` project.clj ` :
127127
128128``` clojure
129- [org.clj-commons/slingshot " 0.13.next " ]
129+ [org.clj-commons/slingshot " 0.13.0 " ]
130130```
131131
132132` tensor/parse.clj ` :
Original file line number Diff line number Diff line change 1616
1717(def lib 'org.clj-commons /slingshot )
1818(defn- the-version [patch] (format " 0.13.%s" patch))
19- (def version (the-version " 0" )) ; 0.13.0 unreleased
19+ (def version (the-version " 0" )) ; 0.13.0 latest release
2020(def snapshot (the-version " 99-SNAPSHOT" ))
2121(def class-dir " target/classes" )
2222
You can’t perform that action at this time.
0 commit comments