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

Commit b88d25f

Browse files
committed
Version 0.4.2
1 parent 85ab084 commit b88d25f

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

README.md

+9-5
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.4.1"]` to dependencies
38+
1. Add `[rum "0.4.2"]` to dependencies
3939
2. `(require '[rum.core :as rum])`.
4040

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

321321
## Changes
322322

323+
### 0.4.2
324+
325+
- Check for `setTimeout` in global scope instead of in window (thx [Alexander Solovyov](https://github.com/piranha), PR #43)
326+
323327
### 0.4.1
324328

325-
- Fixed but with rum macros emitting wrong namespace. You can now require `rum.core` under any alias you want (thx @[Stuart Hinson](https://github.com/stuarth), PR #42)
329+
- Fixed bug with rum macros emitting wrong namespace. You can now require `rum.core` under any alias you want (thx [Stuart Hinson](https://github.com/stuarth), PR #42)
326330

327331
### 0.4.0
328332

@@ -331,7 +335,7 @@ This is a detailed breakdown of what happens inside of Rum. By using `rum/defc`,
331335
### 0.3.0
332336

333337
- Upgraded to React 0.13.3, Sablono 0.3.6, ClojueScript 1.7.48
334-
- New API to access context: `child-context`, `child-context-types`, `context-types` (thx @[Karanbir Toor](https://github.com/currentoor), PR #37)
338+
- New API to access context: `child-context`, `child-context-types`, `context-types` (thx [Karanbir Toor](https://github.com/currentoor), PR #37)
335339
- New `defcc` macro for when you only need React component, not the whole Rum state
336340
- [ BREAKING ] Component inner state (`:rum/state`) was moved from `props` to `state`. It doesn’t change a thing if you were using Rum API only, but might break something if you were relaying on internal details
337341
- Deprecated `rum/with-props` macro, use `rum/with-key` or `rum/with-ref` fns instead
@@ -351,11 +355,11 @@ This is a detailed breakdown of what happens inside of Rum. By using `rum/defc`,
351355

352356
### 0.2.4
353357

354-
- `will-update` and `did-update` lifecycle methods added (thx @[Andrey Vasenin](https://github.com/avasenin), pull request #18)
358+
- `will-update` and `did-update` lifecycle methods added (thx [Andrey Vasenin](https://github.com/avasenin), pull request #18)
355359

356360
### 0.2.3
357361

358-
- Components defined via `defc/defcs` will have `displayName` defined (thx @[Ivan Dubrov](https://github.com/idubrov), pull request #16)
362+
- Components defined via `defc/defcs` will have `displayName` defined (thx [Ivan Dubrov](https://github.com/idubrov), pull request #16)
359363
- Not referencing `requestAnimationFrame` when used in headless environment (thx @[whodidthis](https://github.com/whodidthis), pull request #14)
360364

361365
### 0.2.2

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject rum "0.4.1"
1+
(defproject rum "0.4.2"
22
:description "ClojureScript wrapper for React"
33
:license { :name "Eclipse"
44
:url "http://www.eclipse.org/legal/epl-v10.html" }

target/main.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)