Hi all,

I've noticed many people with .travis.yml files that perhaps no longer mean 
quite what people think they do.

In particular:

language: julia
julia:
  - release
  - nightly

Currently means "Test on Julia 0.3.11 and Julia 0.5-dev"
When Julia 0.4.0 comes out, it'll mean "Test on Julia 0.4.0 and Julia 
0.5-dev"

My preference has been to make it precise, so either

language: julia
julia:
  - 0.3
  - 0.4
  - nightly

If you want to try to support all 3 versions, or

language: julia
julia:
  - 0.3
  - 0.4

If you just want to support the stable versions, or

language: julia
julia:
  - 0.4
  - nightly

If you want to give up on 0.3 (which is fine, just make sure you update 
your REQUIRE file!)


Reply via email to