Re: [ANN] Clojure 1.10.0-beta7

2018-11-20 Thread Alex Miller
On Tuesday, November 20, 2018 at 5:50:13 PM UTC-6, Matching Socks wrote: > > For those keeping score at home, the CLJ-2436 patch says, > > (defn- typeref->class > - [typeref classloader] > + ^Class [typeref classloader] >(if (class? typeref) > typeref > -

Re: [ANN] Clojure 1.10.0-beta7

2018-11-20 Thread Matching Socks
For those keeping score at home, the CLJ-2436 patch says, (defn- typeref->class - [typeref classloader] + ^Class [typeref classloader] (if (class? typeref) typeref - (clojure.lang.RT/classForName (typename typeref) false classloader))) +(clojure.lang.RT/classForName (typename

RE: [ANN] Clojure 1.10.0-beta7

2018-11-20 Thread Sean Corfield
Given how small the delta is from Beta 6 to Beta 7, it should surprise no one that all our tests pass on Beta 7 at World Singles Networks  Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN An Architect's View -- http://corfield.org/ "If you're not annoying somebody, you're not really alive."

Re: [ANN] Clojure 1.10.0-beta7

2018-11-20 Thread Alex Miller
That is new code in reflect.java so that's a good catch. Patched in https://dev.clojure.org/jira/browse/CLJ-2436 and will prob get that in next. On Monday, November 19, 2018 at 10:35:46 PM UTC-6, Andy Fingerhut wrote: > > Not testing results this time, but just a comparison of reflection >

Re: [ANN] Clojure 1.10.0-beta7

2018-11-19 Thread Andy Fingerhut
Not testing results this time, but just a comparison of reflection warnings in Clojure 1.9.0 vs. 1.10.0-beta7, after adding (set! *warn-on-reflection* true) to all .clj files in Clojure's source code that did not already have one. These were obtained when compiling Clojure using mvn and Oracle

Re: [ANN] Clojure 1.10.0-beta7

2018-11-19 Thread Alex Miller
We expect to move back into release candidates next, so testing welcome... On Monday, November 19, 2018 at 3:34:03 PM UTC-6, Alex Miller wrote: > > 1.10.0-beta7 is now available. > > You can try it with clj using: > > clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version "1.10.0-beta7"}}}' > >