Skip to content

Commit

Permalink
0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Nov 7, 2023
1 parent b33840c commit 0ef3621
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

## master

- [#44](https://github.com/clojure-emacs/clj-suitable/pull/44): More robust completion for referred keywords. If namespace is
required using `:as-alias`, completion candidates were missing for
some CLJS environments.
## 0.6.0 (2023-11-07)

- [#44](https://github.com/clojure-emacs/clj-suitable/pull/44): More robust completion for referred keywords. If a given namespace is
required using `:as-alias`, completion candidates were missing for some CLJS environments.

## 0.6.0 (2023-11-05)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ 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.6.0"]` to your dependencies vector.
Add `[org.rksm/suitable "0.6.1"]` to your dependencies vector.

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

Expand Down Expand Up @@ -167,15 +167,15 @@ Also, direct global access is supported such as `js/console.log`. suitable will
#### Local install

```
PROJECT_VERSION=0.6.0 make install
PROJECT_VERSION=0.6.1 make install
```

#### Releasing to Clojars

Release to [clojars](https://clojars.org/) by tagging a new release:

```
git tag -a v0.6.0 -m "Release 0.6.0"
git tag -a v0.6.1 -m "Release 0.6.1"
git push --tags
```

Expand Down

0 comments on commit 0ef3621

Please sign in to comment.