This commit is contained in:
roman01la
2021-04-02 15:07:39 +03:00
parent 147d43b552
commit 9feb2a1781
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
## 0.12.6
### Fixes
- Fixed broken interpretation of a collection of elements, due to incorrect `fragment?` check #235
## 0.12.5
### Fixes

View File

@ -81,7 +81,7 @@ Rum:
## Using Rum
Add to project.clj: `[rum "0.12.5"]`
Add to project.clj: `[rum "0.12.6"]`
### API Docs & Articles
@ -642,7 +642,7 @@ There are Rum wrappers for the various React hooks. See doc strings for examples
When used from cljs Rum delegates serizliation to ReactDOM library. If used from clj/cljc, Rum works as a traditional template engine à la Hiccup:
1. Rums `project.clj` dependency becomes `[rum "0.12.5" :exclusions [cljsjs/react cljsjs/react-dom]`
1. Rums `project.clj` dependency becomes `[rum "0.12.6" :exclusions [cljsjs/react cljsjs/react-dom]`
2. Import `rum.core` as usual.
3. Define components using `rum/defc` or other macros as usual.
4. Instead of mounting, call `rum/render-html` to render into a string.

View File

@ -1,4 +1,4 @@
(defproject rum "0.12.5"
(defproject rum "0.12.6"
:description "ClojureScript wrapper for React"
:license {:name "Eclipse"
:url "http://www.eclipse.org/legal/epl-v10.html"}