Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit 21e78e2

Browse files
committed
Version 0.6.0
1 parent 83fcb71 commit 21e78e2

File tree

3 files changed

+427
-411
lines changed

3 files changed

+427
-411
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Rum provides basic tools that every React app eventually need:
3535

3636
## Using Rum <a href="https://gitter.im/tonsky/rum?utm_source=badge&amp;utm_medium=badge&amp;utm_campaign=pr-badge&amp;utm_content=badge"><img src="https://camo.githubusercontent.com/da2edb525cde1455a622c58c0effc3a90b9a181c/68747470733a2f2f6261646765732e6769747465722e696d2f4a6f696e253230436861742e737667" alt="Gitter" data-canonical-src="https://badges.gitter.im/Join%20Chat.svg" style="max-width:100%;"></a>
3737

38-
1. Add `[rum "0.5.0"]` to dependencies
38+
1. Add `[rum "0.6.0"]` to dependencies
3939
2. `(require '[rum.core :as rum])`.
4040

4141
Simplest example defines component, instantiates it and mounts it on a page:
@@ -328,6 +328,10 @@ This is a detailed breakdown of what happens inside of Rum. By using `rum/defc`,
328328

329329
## Changes
330330

331+
### 0.6.0
332+
333+
- [ BREAKING ] Updated to [React 0.14.3](https://facebook.github.io/react/blog/2015/10/07/react-v0.14.html) (thx [Andrey Antukh](https://github.com/niwinz), PR #53)
334+
331335
### 0.5.0
332336

333337
- Added `:class-properties` to define arbitrary properties on a React class (thx [Karanbir Toor](https://github.com/currentoor), PR #44)

project.clj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
(defproject rum "0.5.0"
1+
(defproject rum "0.6.0"
22
:description "ClojureScript wrapper for React"
33
:license { :name "Eclipse"
44
:url "http://www.eclipse.org/legal/epl-v10.html" }
55
:url "https://github.com/tonsky/rum"
66

77
:dependencies
88
[[org.clojure/clojure "1.7.0" :scope "provided"]
9-
[org.clojure/clojurescript "1.7.170" :scope "provided"]
9+
[org.clojure/clojurescript "1.7.145" :scope "provided"]
1010
[cljsjs/react "0.14.3-0"]
11-
[cljsjs/react-dom "0.14.3-0"]
11+
[cljsjs/react-dom "0.14.3-1"]
1212
[sablono "0.4.0"]]
1313

1414
:global-vars
1515
{ *warn-on-reflection* true }
1616

17-
:plugins [ [lein-cljsbuild "1.1.0"] ]
17+
:plugins [ [lein-cljsbuild "1.1.1"] ]
1818

1919
:cljsbuild
2020
{ :builds

0 commit comments

Comments
 (0)