Skip to content

Commit

Permalink
Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Nov 20, 2015
1 parent 83fcb71 commit 21e78e2
Show file tree
Hide file tree
Showing 3 changed files with 427 additions and 411 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Rum provides basic tools that every React app eventually need:

## 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>

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

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

## Changes

### 0.6.0

- [ 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)

### 0.5.0

- Added `:class-properties` to define arbitrary properties on a React class (thx [Karanbir Toor](https://github.com/currentoor), PR #44)
Expand Down
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
(defproject rum "0.5.0"
(defproject rum "0.6.0"
:description "ClojureScript wrapper for React"
:license { :name "Eclipse"
:url "http://www.eclipse.org/legal/epl-v10.html" }
:url "https://github.com/tonsky/rum"

:dependencies
[[org.clojure/clojure "1.7.0" :scope "provided"]
[org.clojure/clojurescript "1.7.170" :scope "provided"]
[org.clojure/clojurescript "1.7.145" :scope "provided"]
[cljsjs/react "0.14.3-0"]
[cljsjs/react-dom "0.14.3-0"]
[cljsjs/react-dom "0.14.3-1"]
[sablono "0.4.0"]]

:global-vars
{ *warn-on-reflection* true }

:plugins [ [lein-cljsbuild "1.1.0"] ]
:plugins [ [lein-cljsbuild "1.1.1"] ]

:cljsbuild
{ :builds
Expand Down
Loading

0 comments on commit 21e78e2

Please sign in to comment.