Skip to content

Commit 753f720

Browse files
committed
prep for 0.13.0
Signed-off-by: Sean Corfield <[email protected]>
1 parent cbc70e7 commit 753f720

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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`:

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
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

0 commit comments

Comments
 (0)