diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65d80b0..0cd4023 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: uses: actions/setup-java@v4 with: distribution: "adopt" - java-version: 11 + java-version: 21 - name: "Restore Cache" uses: "actions/cache@v4" diff --git a/CHANGELOG.md b/CHANGELOG.md index 8995063..3340f02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,8 @@ For breaking changes, check [here](#breaking-changes). - [#141](https://github.com/babashka/cli/issues/141): docs: briefly cover adding production polish to a cli ([@lread](https://github.com/lread)) - +- [#144](https://github.com/babashka/cli/issues/144): deployed pom now reflects min supported clojure version & doc supported platforms/versions +([@lread](https://github.com/lread)) ## v0.8.67 (2025-11-21) diff --git a/README.md b/README.md index e76319b..1d71d4e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,10 @@ [![Clojars Project](https://img.shields.io/clojars/v/org.babashka/cli.svg)](https://clojars.org/org.babashka/cli) [![bb built-in](https://raw.githubusercontent.com/babashka/babashka/master/logo/built-in-badge.svg)](https://book.babashka.org#badges) -Turn Clojure functions into CLIs! +Turn Clojure functions into CLIs! This library can be used from: +- [babashka](https://github.com/babashka/babashka) - included as a built-in library +- [Clojure on the JVM](https://www.clojure.org/guides/install_clojure) - we support Clojure 1.10.3 and above on Java 11 and above +- [ClojureScript](https://clojurescript.org) - we test against the current release ## [API](API.md) diff --git a/deps.edn b/deps.edn index 916a0d2..5194af9 100644 --- a/deps.edn +++ b/deps.edn @@ -1,4 +1,4 @@ -{:deps {org.clojure/clojure {:mvn/version "1.11.1"}} +{:deps {org.clojure/clojure {:mvn/version "1.10.3"}} :aliases {:repl {:extra-paths ["test"] @@ -25,6 +25,7 @@ :clj-1.11 {:extra-deps {org.clojure/clojure {:mvn/version "1.11.1"}}} :cljs-test - {:extra-deps {olical/cljs-test-runner {:mvn/version "3.7.0"}} + {:extra-deps {olical/cljs-test-runner {:mvn/version "3.7.0"} + org.clojure/clojurescript {:mvn/version "1.12.134"}} :extra-paths ["test" "cljs-test-runner-out/gen"] :main-opts ["-m" "cljs-test-runner.main" "-d" "test"]}}}