Skip to content

Commit d180008

Browse files
author
Bruce Hauman
committed
releasing 0.2.1
1 parent afbad9c commit d180008

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.2.1 React 14
2+
3+
* now depends on React 14
4+
* fixing the `:watch-atom false` option
5+
* added the `:actual` output for failing tests
6+
* allowing the config of default card options
7+
18
## 0.2.0-8 Improved Reagent support
29

310
* **added `devcards.core/devcard-rg`** as a shortcut to defining

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,10 @@ interface responds.
156156
First make sure you include the following `:dependencies` in your `project.clj` file.
157157

158158
```clojure
159-
[org.clojure/clojurescript "1.7.122"]
160-
[devcards "0.2.0-8"]
159+
[org.clojure/clojurescript "1.7.170"]
160+
[devcards "0.2.1"]
161161
```
162162

163-
164163
You will need an HTML file to host the devcards interface. It makes
165164
sense to have a separate file to host devcards. I would
166165
create the following `resources/public/cards.html` file (this is the same

example_src/devdemos/testing.cljs

-4
Original file line numberDiff line numberDiff line change
@@ -195,15 +195,11 @@ The following example shows this usage:
195195
```
196196
")
197197

198-
199198
(defcard some-tests
200199
(dc/tests
201200
"## this should show up"
202201
(is (= 1 1))
203202
(is (= 1 2))))
204203

205-
206-
207-
208204
#_(js/setTimeout (fn [] (cljs.test/run-tests 'devdemos.testing)) 500)
209205

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject devcards "0.2.1-SNAPSHOT"
1+
(defproject devcards "0.2.1"
22
:description "Devcards is a ClojureScript library that provides a lab space to you develop your UI components independently and interactively."
33
:url "http://github.com/bhauman/devcards"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)