Skip to content

Commit ac8b49f

Browse files
committed
0.6.2
1 parent 3a2a7a0 commit ac8b49f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master
44

5+
# 0.6.2 (2033-01-14)
6+
57
* [#45](https://github.com/clojure-emacs/clj-suitable/issues/45): don't exclude enumerable properties from `Object`.
68

79
## 0.6.1 (2023-11-07)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ You can now start a figwheel repl via `clj -M:suitable` and use TAB to complete.
9898

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

101-
Add `[org.rksm/suitable "0.6.1"]` to your dependencies vector.
101+
Add `[org.rksm/suitable "0.6.2"]` to your dependencies vector.
102102

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

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

169169
```
170-
PROJECT_VERSION=0.6.1 make install
170+
PROJECT_VERSION=0.6.2 make install
171171
```
172172

173173
#### Releasing to Clojars
174174

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

177177
```
178-
git tag -a v0.6.1 -m "Release 0.6.1"
178+
git tag -a v0.6.2 -m "Release 0.6.2"
179179
git push --tags
180180
```
181181

project.clj

+2
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ Distributed under the Eclipse Public License either version 1.0 or (at your opti
125125
{:keys [profiles dependencies resource-paths source-paths]} (parse-deps-edn f f)]
126126
(defproject org.rksm/suitable (or (not-empty (System/getenv "PROJECT_VERSION"))
127127
"0.0.0")
128+
:license {:name "MIT"
129+
:url "https://opensource.org/licenses/MIT"}
128130
:source-paths ~source-paths
129131
:resource-paths ~resource-paths
130132
:dependencies ~dependencies

0 commit comments

Comments
 (0)