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

Commit 20638e4

Browse files
committed
Version 0.4.1
1 parent 353e66e commit 20638e4

File tree

3 files changed

+420
-9915
lines changed

3 files changed

+420
-9915
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,10 @@ This is a detailed breakdown of what happens inside of Rum. By using `rum/defc`,
320320

321321
## Changes
322322

323+
### 0.4.1
324+
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)
326+
323327
### 0.4.0
324328

325329
- [ BREAKING ] Core namespace was renamed from `rum` to `rum.core` to supress CLJS warnings

project.clj

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject rum "0.4.0"
1+
(defproject rum "0.4.1"
22
:description "ClojureScript wrapper for React"
33
:license { :name "Eclipse"
44
:url "http://www.eclipse.org/legal/epl-v10.html" }
@@ -24,9 +24,8 @@
2424
:output-to "target/main.js"
2525
:optimizations :advanced
2626
:source-map "target/main.js.map"
27-
:pretty-print true
28-
:compiler-stats true
29-
:warnings {:single-segment-namespace false} }}
27+
:pretty-print false
28+
:compiler-stats true }}
3029
{ :id "none"
3130
:source-paths ["src" "examples"]
3231
:compiler
@@ -36,5 +35,4 @@
3635
:asset-path "target/none"
3736
:optimizations :none
3837
:source-map "target/main.js.map"
39-
:compiler-stats true
40-
:warnings {:single-segment-namespace false} }}]})
38+
:compiler-stats true }}]})

0 commit comments

Comments
 (0)