This commit is contained in:
Nikita Prokopov
2022-04-01 16:24:36 +02:00
parent f25079a143
commit 4ff9ddc98d
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
## 0.12.9
- restored :will-update for backward compatibility #249 thx @tiensonqin
## 0.12.8
### Fixes

View File

@ -83,7 +83,7 @@ Rum:
## Using Rum
Add to project.clj: `[rum "0.12.8"]`
Add to project.clj: `[rum "0.12.9"]`
### API Docs & Articles
@ -644,7 +644,7 @@ Using `:<>` as the tag in a markup vector creates a React Fragment, allowing you
When used from cljs Rum delegates serialization 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.8" :exclusions [cljsjs/react cljsjs/react-dom]`
1. Rums `project.clj` dependency becomes `[rum "0.12.9" :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.8"
(defproject rum "0.12.9"
:description "ClojureScript wrapper for React"
:license {:name "Eclipse"
:url "http://www.eclipse.org/legal/epl-v10.html"}