Re: [ClojureScript] Re: ANN: ClojureScript 0.0-2411

2014-12-08 Thread David Nolen
Thanks, fixed!

David

On Sun, Dec 7, 2014 at 7:01 PM, Shaun LeBron shaunewilli...@gmail.com wrote:
 might need to update the readme with this latest version

 On Friday, December 5, 2014 2:03:25 PM UTC-6, David Nolen wrote:
 ClojureScript, the Clojure compiler that emits JavaScript source code.

 README and source code: https://github.com/clojure/clojurescript

 New release version: 0.0-2411

 Leiningen dependency information:

 [org.clojure/clojurescript 0.0-2411]

 Feedback welcome!

 ### Enhancements
 * forcing source maps to load for dynamic js reloads
 * All ISeqable types are now ES6 iterable
 * CLJS-863: Invalid arity error when calling 0-arity multimethod
 * CLJS-622: better error reporting for zero arity protocol methods
 * CLJS-506: expose more Closure minification knobs

 ### Changes
 * CLJS-807: Emitter cannot emit BigInt or BigDecimal
 * CLJS-749: Ignore .repl-* given that CLJS version is appended by default.
 * CLJS-749: Append CLJS version to browser repl-env
 * CLJS-749: *clojurescript-version* is unbound return empty string
 * implement INamed for multi-method
 * revert CLJS-801
 * CLJS-888: Omit redundant {} around emitted recur
 * CLJS-888: Better placement of newlines in emitter
 * Join preambles with newline line to catch cases with files without 
 newlines.
 * add js-in interop macro
 * Add nthrest
 * CLJS-510: Throw error when :output-wrapper and :optimizations
 :whitespace combined
 * CLJS-875: bump tools.reader dep to 0.8.10
 * CLJS-879: add `update` from Clojure 1.7
 * CLJS-857: change deftype*/defrecord* special forms to include their
 inline methods decls

 ### Fixes
 * CLJS-885: relax type inference around numbers
 * fix var resolution bug pointed out by Brandon Bloom
 * CLJS-853: propagate read-time metadata on fn and reify forms at runtime
 * CLJS-716: support hashing of JavaScript dates
 * CLJS-814: clojure.string/reverse breaks surrogate pairs
 * Recursively check IEncodeClojure in js-clj
 * CLJS-873: non-higher-order calls to array-map should return PAMs
 * CLJS-881: check for duplicate keys in array-map
 * select-keys did not preserve metadata

 --
 Note that posts from new members are moderated - please be patient with your 
 first post.
 ---
 You received this message because you are subscribed to the Google Groups 
 ClojureScript group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to clojurescript+unsubscr...@googlegroups.com.
 To post to this group, send email to clojurescr...@googlegroups.com.
 Visit this group at http://groups.google.com/group/clojurescript.

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: ClojureScript 0.0-2411

2014-12-07 Thread David James
Thanks. Problem solved.

On Saturday, December 6, 2014 5:34:53 AM UTC-5, David Nolen wrote:
 That's an issue with core.async. Make sure you have the latest. If you do, 
 please file an issue for core.async.

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: ClojureScript 0.0-2411

2014-12-07 Thread Shaun LeBron
might need to update the readme with this latest version

On Friday, December 5, 2014 2:03:25 PM UTC-6, David Nolen wrote:
 ClojureScript, the Clojure compiler that emits JavaScript source code.
 
 README and source code: https://github.com/clojure/clojurescript
 
 New release version: 0.0-2411
 
 Leiningen dependency information:
 
 [org.clojure/clojurescript 0.0-2411]
 
 Feedback welcome!
 
 ### Enhancements
 * forcing source maps to load for dynamic js reloads
 * All ISeqable types are now ES6 iterable
 * CLJS-863: Invalid arity error when calling 0-arity multimethod
 * CLJS-622: better error reporting for zero arity protocol methods
 * CLJS-506: expose more Closure minification knobs
 
 ### Changes
 * CLJS-807: Emitter cannot emit BigInt or BigDecimal
 * CLJS-749: Ignore .repl-* given that CLJS version is appended by default.
 * CLJS-749: Append CLJS version to browser repl-env
 * CLJS-749: *clojurescript-version* is unbound return empty string
 * implement INamed for multi-method
 * revert CLJS-801
 * CLJS-888: Omit redundant {} around emitted recur
 * CLJS-888: Better placement of newlines in emitter
 * Join preambles with newline line to catch cases with files without newlines.
 * add js-in interop macro
 * Add nthrest
 * CLJS-510: Throw error when :output-wrapper and :optimizations
 :whitespace combined
 * CLJS-875: bump tools.reader dep to 0.8.10
 * CLJS-879: add `update` from Clojure 1.7
 * CLJS-857: change deftype*/defrecord* special forms to include their
 inline methods decls
 
 ### Fixes
 * CLJS-885: relax type inference around numbers
 * fix var resolution bug pointed out by Brandon Bloom
 * CLJS-853: propagate read-time metadata on fn and reify forms at runtime
 * CLJS-716: support hashing of JavaScript dates
 * CLJS-814: clojure.string/reverse breaks surrogate pairs
 * Recursively check IEncodeClojure in js-clj
 * CLJS-873: non-higher-order calls to array-map should return PAMs
 * CLJS-881: check for duplicate keys in array-map
 * select-keys did not preserve metadata

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: ClojureScript 0.0-2411

2014-12-06 Thread David Nolen
That's an issue with core.async. Make sure you have the latest. If you do,
please file an issue for core.async.

On Friday, December 5, 2014, David James davidcja...@gmail.com wrote:

 I'm getting the following warnings from `lein cljsbuild auto`. Anybody
 else?

 WARNING: Use of undeclared Var cljs.core.async/do-alts at line 62
 file:/Users/david/.m2/repository/org/clojure/core.async/0.1.338.0-5c5012-alpha/core.async-0.1.338.0-5c5012-alpha.jar!/cljs/core/async/impl/ioc_helpers.cljs
 WARNING: Bad method signature in protocol implementation, impl/Handler
 does not declare method called lock-id at line 719
 file:/Users/david/.m2/repository/org/clojure/core.async/0.1.338.0-5c5012-alpha/core.async-0.1.338.0-5c5012-alpha.jar!/cljs/core/async.cljs
 WARNING: Use of undeclared Var cljs.core.async.impl.protocols/lock-id at
 line 722
 file:/Users/david/.m2/repository/org/clojure/core.async/0.1.338.0-5c5012-alpha/core.async-0.1.338.0-5c5012-alpha.jar!/cljs/core/async.cljs
 WARNING: Bad method signature in protocol implementation, impl/Handler
 does not declare method called lock-id at line 719
 /Users/david/dev/hft/target/cljsbuild-compiler-0/cljs/core/async.cljs
 WARNING: Use of undeclared Var cljs.core.async.impl.protocols/lock-id at
 line 722
 /Users/david/dev/hft/target/cljsbuild-compiler-0/cljs/core/async.cljs

 --
 Note that posts from new members are moderated - please be patient with
 your first post.
 ---
 You received this message because you are subscribed to the Google Groups
 ClojureScript group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to clojurescript+unsubscr...@googlegroups.com javascript:;.
 To post to this group, send email to clojurescr...@googlegroups.com
 javascript:;.
 Visit this group at http://groups.google.com/group/clojurescript.


-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ANN: ClojureScript 0.0-2411

2014-12-05 Thread David Nolen
ClojureScript, the Clojure compiler that emits JavaScript source code.

README and source code: https://github.com/clojure/clojurescript

New release version: 0.0-2411

Leiningen dependency information:

[org.clojure/clojurescript 0.0-2411]

Feedback welcome!

### Enhancements
* forcing source maps to load for dynamic js reloads
* All ISeqable types are now ES6 iterable
* CLJS-863: Invalid arity error when calling 0-arity multimethod
* CLJS-622: better error reporting for zero arity protocol methods
* CLJS-506: expose more Closure minification knobs

### Changes
* CLJS-807: Emitter cannot emit BigInt or BigDecimal
* CLJS-749: Ignore .repl-* given that CLJS version is appended by default.
* CLJS-749: Append CLJS version to browser repl-env
* CLJS-749: *clojurescript-version* is unbound return empty string
* implement INamed for multi-method
* revert CLJS-801
* CLJS-888: Omit redundant {} around emitted recur
* CLJS-888: Better placement of newlines in emitter
* Join preambles with newline line to catch cases with files without newlines.
* add js-in interop macro
* Add nthrest
* CLJS-510: Throw error when :output-wrapper and :optimizations
:whitespace combined
* CLJS-875: bump tools.reader dep to 0.8.10
* CLJS-879: add `update` from Clojure 1.7
* CLJS-857: change deftype*/defrecord* special forms to include their
inline methods decls

### Fixes
* CLJS-885: relax type inference around numbers
* fix var resolution bug pointed out by Brandon Bloom
* CLJS-853: propagate read-time metadata on fn and reify forms at runtime
* CLJS-716: support hashing of JavaScript dates
* CLJS-814: clojure.string/reverse breaks surrogate pairs
* Recursively check IEncodeClojure in js-clj
* CLJS-873: non-higher-order calls to array-map should return PAMs
* CLJS-881: check for duplicate keys in array-map
* select-keys did not preserve metadata

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: ClojureScript 0.0-2411

2014-12-05 Thread David James
I'm getting the following warnings from `lein cljsbuild auto`. Anybody else?

WARNING: Use of undeclared Var cljs.core.async/do-alts at line 62 
file:/Users/david/.m2/repository/org/clojure/core.async/0.1.338.0-5c5012-alpha/core.async-0.1.338.0-5c5012-alpha.jar!/cljs/core/async/impl/ioc_helpers.cljs
WARNING: Bad method signature in protocol implementation, impl/Handler does not 
declare method called lock-id at line 719 
file:/Users/david/.m2/repository/org/clojure/core.async/0.1.338.0-5c5012-alpha/core.async-0.1.338.0-5c5012-alpha.jar!/cljs/core/async.cljs
WARNING: Use of undeclared Var cljs.core.async.impl.protocols/lock-id at line 
722 
file:/Users/david/.m2/repository/org/clojure/core.async/0.1.338.0-5c5012-alpha/core.async-0.1.338.0-5c5012-alpha.jar!/cljs/core/async.cljs
WARNING: Bad method signature in protocol implementation, impl/Handler does not 
declare method called lock-id at line 719 
/Users/david/dev/hft/target/cljsbuild-compiler-0/cljs/core/async.cljs
WARNING: Use of undeclared Var cljs.core.async.impl.protocols/lock-id at line 
722 /Users/david/dev/hft/target/cljsbuild-compiler-0/cljs/core/async.cljs

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Clojure group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.