Skip to content

Commit 35e0138

Browse files
committed
Published pom now reflects min Clojure version
- Update clojure dep. This will be reflected in deployed pom. - Test against current version of ClojureScript (instead of what cljs-test-runner happens to bring in) - Doc min supported platforms/versions Closes #144
1 parent 87c441d commit 35e0138

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ For breaking changes, check [here](#breaking-changes).
88

99
- [#141](https://github.com/babashka/cli/issues/141): docs: briefly cover adding production polish to a cli
1010
([@lread](https://github.com/lread))
11-
11+
- [#144](https://github.com/babashka/cli/issues/144): deployed pom now reflects min support clojure version & doc supported platforms/versions
12+
([@lread](https://github.com/lread))
1213

1314
## v0.8.67 (2025-11-21)
1415

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
[![Clojars Project](https://img.shields.io/clojars/v/org.babashka/cli.svg)](https://clojars.org/org.babashka/cli)
44
[![bb built-in](https://raw.githubusercontent.com/babashka/babashka/master/logo/built-in-badge.svg)](https://book.babashka.org#badges)
55

6-
Turn Clojure functions into CLIs!
6+
Turn Clojure functions into CLIs! This library can be used from:
7+
- [babashka](https://github.com/babashka/babashka) - included as a built-in library
8+
- [Clojure on the JVM](https://www.clojure.org/guides/install_clojure) - we support Clojure 1.10.3 and above on Java 11 and above
9+
- [ClojureScript](https://clojurescript.org) - we test against the current release
710

811
## [API](API.md)
912

deps.edn

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{:deps {org.clojure/clojure {:mvn/version "1.11.1"}}
1+
{:deps {org.clojure/clojure {:mvn/version "1.10.3"}}
22
:aliases
33
{:repl
44
{:extra-paths ["test"]
@@ -25,6 +25,7 @@
2525
:clj-1.11 {:extra-deps {org.clojure/clojure {:mvn/version "1.11.1"}}}
2626

2727
:cljs-test
28-
{:extra-deps {olical/cljs-test-runner {:mvn/version "3.7.0"}}
28+
{:extra-deps {olical/cljs-test-runner {:mvn/version "3.7.0"}
29+
org.clojure/clojurescript {:mvn/version "1.12.134"}}
2930
:extra-paths ["test" "cljs-test-runner-out/gen"]
3031
:main-opts ["-m" "cljs-test-runner.main" "-d" "test"]}}}

0 commit comments

Comments
 (0)