Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Jul 28, 2023
1 parent dd23388 commit d1b1965
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,18 @@ workflows:
# - node.js runtimes
clojure_version: ["1.8", "1.9", "1.10", "1.11", "master"]
jdk_version: [openjdk8, openjdk11, openjdk16, openjdk17]
filters:
branches:
only: /.*/
tags:
only: /^v\d+\.\d+\.\d+(-alpha\d*)?(-beta\d*)?$/
- util_job:
name: Code Linting
filters:
branches:
only: /.*/
tags:
only: /^v\d+\.\d+\.\d+(-alpha\d*)?(-beta\d*)?$/
steps:
- run:
name: Running clj-kondo
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master

## 0.5.0 (2023-07-28)

* [#30](https://github.com/clojure-emacs/clj-suitable/issues/30): don't run side-effects for pure-clojurescript (non-interop) `->` chains.

## 0.4.1 (2021-10-02)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ You can now start a figwheel repl via `clj -M:suitable` and use TAB to complete.

First make sure that the [normal leiningen setup](https://figwheel.org/#setting-up-a-build-with-leiningen) works.

Add `[org.rksm/suitable "0.4.1"]` to your dependencies vector.
Add `[org.rksm/suitable "0.5.0"]` to your dependencies vector.

Then you can start a repl with `lein trampoline run -m suitable.figwheel.main -- -b dev -r`

### Emacs CIDER

`suitable` is used by CIDER's code completion middleware (as of CIDER 0.22.0), so no extra installation steps are required.
`suitable` is used by CIDER's code completion middleware, so no extra installation steps are required.

CIDER will always use the static code completion provided by suitable, regardless of the ClojureScript runtime.

Expand Down
6 changes: 3 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
;; for starting nrepl clj & cljs servers for live development
:dev-figwheel {:extra-paths ["src/dev" "resources" "target"]
:extra-deps {cider/piggieback {:mvn/version "0.5.3"}
cider/cider-nrepl {:mvn/version "0.31.0"}
cider/cider-nrepl {:mvn/version "0.32.0"}
com.bhauman/figwheel-main {:mvn/version "0.2.18"}}
:main-opts ["-m" "suitable.nrepl-figwheel"]}

:dev-shadow {:extra-paths ["src/dev" "resources" "target"]
:extra-deps {cider/piggieback {:mvn/version "0.5.3"}
cider/cider-nrepl {:mvn/version "0.31.0"}
cider/cider-nrepl {:mvn/version "0.32.0"}
thheller/shadow-cljs {:mvn/version "2.24.1"}}
:main-opts ["-m" "suitable.nrepl-shadow"]}

Expand All @@ -48,7 +48,7 @@
:test {:extra-paths ["src/test" "resources"]
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}
cider/cider-nrepl {:mvn/version "0.31.0"}
cider/cider-nrepl {:mvn/version "0.32.0"}
cider/piggieback {:mvn/version "0.5.3"}}
:jvm-opts ["-Dclojure.main.report=stderr"]
:main-opts ["-m" "cognitect.test-runner" "-d" "src/test"]}
Expand Down

0 comments on commit d1b1965

Please sign in to comment.