On Fri, Feb 3, 2012 at 7:06 PM, AndyK <[email protected]> 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 the clojure-contrib changes and would like to avoid > problems like that while being able to use 1.4 in my code. The contrib changes were a one-off, breaking the monolithic 1.2 contrib into smaller, well-maintained pieces, and there is already automatic testing of those new libraries against 1.4.0 - see the matrix tests here: http://build.clojure.org/ One thing you can do to help yourself in this is use lein-multi to automatically run your application's tests against different versions. At World Singles, we run all our tests against 1.3.0 (what we're using in production), 1.4.0-master-SNAPSHOT and the latest "official" build (currently beta1). -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ World Singles, LLC. -- http://worldsingles.com/ "Perfection is the enemy of the good." -- Gustave Flaubert, French realist novelist (1821-1880) -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
