Interesting idea.

 

If you’re already on Clojure 1.8, I think it’s pretty safe to upgrade to the 
Alpha builds of 1.9. We’re running 1.9 Alpha 7 in production at the moment (and 
will move to Alpha 8 in our next build after today).

 

The only glitches we ran into were name collisions in libraries due to new 
predicates being added to core, and only one of those caused an actual breakage 
– and those libraries all got updated very quickly (big thanks mostly to Peter 
Taoussanis for the fast responses).

 

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."
-- Margaret Atwood

 

On 6/29/16, 5:16 AM, "Nikita Prokopov" <clojure@googlegroups.com on behalf of 
proko...@gmail.com> wrote:

 

Hi!

 

Not sure if a good idea or bad, but if you were eager to play with latest 
version of clojure.spec but don’t want to upgrade your production to alpha 
version of the language, you can add clojure.spec capabilities as a library to 
1.8:

 

https://github.com/tonsky/clojure-future-spec

 

:dependencies [

  [org.clojure/clojure "1.8.0"]

  [clojure-future-spec "1.9.0-alpha8"]

]

 

(require '[clojure.spec :as spec])

(require '[clojure.spec.gen :as spec.gen])

(require '[clojure.future :refer :all])

 

clojure.future namespace contains all new clojure.core functions like int?, 
seqable? etc

 

The version numbers will follow clojure 1.9 versions. Expect this lib upgraded 
with every new Clojure alpha release until 1.9 if finally out.

 

Nikita.

 

-- 
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.

Reply via email to