Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Sean Corfield
On Fri, Feb 3, 2012 at 7:06 PM, AndyK wrote: > Is 1.4 supposed to be compatible with 1.3 and libraries written to > 1.3? The changes between 1.3 and 1.4 are a lot smaller than between 1.2 and 1.3, fortunately :) > For example, I've found some 1.2 libraries don't play nicely with 1.3 > because of

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread AndyK
On Feb 3, 10:47 am, Stuart Sierra wrote: > Clojure 1.4 goes beta! This release is essentially the same as > 1.4.0-alpha5. It will hit the Maven Central repository in a few hours. > > No new features in the 1.4 line after this point. Bug fixes are still allowed. > > Also, if somebody wants to compi

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Alasdair MacLeod
> That's because Github kicks ass :-) It automatically renders markdown files > as html when you view them in the browser. I've downloaded the jar but don't see any changes.md file in there https://github.com/clojure/clojure/blob/master/changes.md lists 1.3 changes I don't see a 1.4 branch on GitH

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Jim Crossley
Tassilo Horn writes: [...] > Ah, ok, seems to work. Except that it doesn't copy the deps into my > project but only to ~/.m2/, but that's probably the maven way. Correct. Though this plugin may be of interest: http://maven.apache.org/plugins/maven-dependency-plugin/copy-dependencies-mojo.htm

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Tassilo Horn
Jim Crossley writes: >> I operate maven thru leiningen only, but probably I should get some >> understanding of maven, too. Right now, I even cannot determine the >> maven command for fetching deps (after generating a maven pom.xml >> using "lein pom"). ;-) > > mvn install Ah, ok, seems to work

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Jim Crossley
Tassilo Horn writes: [...] > I operate maven thru leiningen only, but probably I should get some > understanding of maven, too. Right now, I even cannot determine the > maven command for fetching deps (after generating a maven pom.xml > using "lein pom"). ;-) mvn install [...] -- You receiv

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Sam Aaron
On 3 Feb 2012, at 20:00, Cedric Greevey wrote: > > FWIW, the file seems to act like perfectly readable HTML in the > browser (surprisingly -- I was expecting something more like trying to > read raw HTML, with tags cluttering up everything, and no working > outbound links, since I didn't expect F

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Cedric Greevey
On Fri, Feb 3, 2012 at 2:40 PM, Tassilo Horn wrote: > Cedric Greevey writes: > >> On Fri, Feb 3, 2012 at 2:11 PM, Stuart Sierra >> wrote: >>> Starting with 1.3 there is a changes.md file in the Clojure source. >> >> I'm fairly sure the OP wants a human-readable, user-centric file he >> can view

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Tassilo Horn
Cedric Greevey writes: > On Fri, Feb 3, 2012 at 2:11 PM, Stuart Sierra > wrote: >> Starting with 1.3 there is a changes.md file in the Clojure source. > > I'm fairly sure the OP wants a human-readable, user-centric file he > can view by clicking a link or pasting a URL into his browser, Yeah, d

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Sam Aaron
On 3 Feb 2012, at 19:26, Cedric Greevey wrote: > On Fri, Feb 3, 2012 at 2:11 PM, Stuart Sierra > wrote: >> Starting with 1.3 there is a changes.md file in the Clojure source. > > I'm fairly sure the OP wants a human-readable, user-centric file he > can view by clicking a link or pasting a URL i

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Tassilo Horn
Stuart Sierra writes: Hi Stuart, > Both Maven and Leiningen can exclude transitive dependencies. In lein, > it looks like this: > > https://github.com/technomancy/leiningen/blob/8baf33ec80bae1d3509590215262351aa2d72fbe/sample.project.clj#L35 Yes, Phil already pointed that out, and it does the t

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Cedric Greevey
On Fri, Feb 3, 2012 at 2:11 PM, Stuart Sierra wrote: > Starting with 1.3 there is a changes.md file in the Clojure source. I'm fairly sure the OP wants a human-readable, user-centric file he can view by clicking a link or pasting a URL into his browser, not a .md file (whatever THAT is) that he h

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Tassilo Horn
Praki Prakash writes: Hi Praki, > I use mvn -X to diagnose such issues. mvn can also produce detailed > reports on dependency and much more (mvn site -- I think). I operate maven thru leiningen only, but probably I should get some understanding of maven, too. Right now, I even cannot determine

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Cedric Greevey
On Fri, Feb 3, 2012 at 2:09 PM, Sam Aaron wrote: > > On 3 Feb 2012, at 15:47, Stuart Sierra wrote: > >> Also, if somebody wants to compile a list on the wiki of all the bug >> fixes and changes since 1.3, that would be very helpful. Thanks! > > That would be wonderful (particularly if someone coul

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Stuart Sierra
Starting with 1.3 there is a changes.md file in the Clojure source. -S -- 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 wit

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Sam Aaron
On 3 Feb 2012, at 15:47, Stuart Sierra wrote: > Also, if somebody wants to compile a list on the wiki of all the bug > fixes and changes since 1.3, that would be very helpful. Thanks! That would be wonderful (particularly if someone could post a link to that list on this mailing list). Not bein

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Stuart Sierra
Both Maven and Leiningen can exclude transitive dependencies. In lein, it looks like this: https://github.com/technomancy/leiningen/blob/8baf33ec80bae1d3509590215262351aa2d72fbe/sample.project.clj#L35 -S -- You received this message because you are subscribed to the Google Groups "Clojure" gro

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Praki Prakash
I use mvn -X to diagnose such issues. mvn can also produce detailed reports on dependency and much more (mvn site -- I think). HTH On Fri, Feb 3, 2012 at 9:19 AM, Tassilo Horn wrote: > Stuart Sierra writes: > > Hi Stu, > >> Clojure 1.4 goes beta! This release is essentially the same as >> 1.4.0

Re: ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Tassilo Horn
Stuart Sierra writes: Hi Stu, > Clojure 1.4 goes beta! This release is essentially the same as > 1.4.0-alpha5. It will hit the Maven Central repository in a few > hours. Great news, I'd very much like to test-drive it before the 1.4.0 release. Is there anything better than downloading its JAR

ANN: Clojure 1.4.0-beta1

2012-02-03 Thread Stuart Sierra
Clojure 1.4 goes beta! This release is essentially the same as 1.4.0-alpha5. It will hit the Maven Central repository in a few hours. No new features in the 1.4 line after this point. Bug fixes are still allowed. Also, if somebody wants to compile a list on the wiki of all the bug fixes and chang