From ac914e4805b22ebb16352b288b61df8f399c8ec5 Mon Sep 17 00:00:00 2001 From: Steve Kelly Date: Wed, 8 Jul 2015 15:15:34 -0500 Subject: [PATCH] House Keeping: add julia 0.3 as version floor readme updates update travis to submit coverage --- .travis.yml | 10 ++++++---- README.md | 8 ++++++-- REQUIRE | 1 + 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 931e2e2..038f3f4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,9 @@ julia: - nightly notifications: email: false -# uncomment the following lines to override the default test script -#script: -# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi -# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("Assimp"); Pkg.test("Assimp"; coverage=true)' +script: + - git fetch --unshallow + - julia -e 'Pkg.clone(pwd())' + - julia -e 'Pkg.test("ImmutableArrays", coverage=true)' +after_success: + - julia -e 'cd(Pkg.dir("ImmutableArrays")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' diff --git a/README.md b/README.md index c4b4efa..ee48177 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,10 @@ Statically-sized immutable vectors and matrices. -- Travis: [![Build Status](https://travis-ci.org/twadleigh/ImmutableArrays.jl.png?branch=master)](https://travis-ci.org/twadleigh/ImmutableArrays.jl) -- Juila 0.2: [![ImmutableArrays](http://pkg.julialang.org/badges/ImmutableArrays_0.2.svg)](http://pkg.julialang.org/?pkg=ImmutableArrays&ver=0.2) +- Travis: [![Build Status](https://travis-ci.org/JuliaGeometry/ImmutableArrays.jl.svg?branch=master)](https://travis-ci.org/JuliaGeometry/ImmutableArrays.jl) +- Coveralls: [![Coverage Status](https://coveralls.io/repos/JuliaGeometry/ImmutableArrays.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/JuliaGeometry/ImmutableArrays.jl?branch=master) - Julia 0.3: [![ImmutableArrays](http://pkg.julialang.org/badges/ImmutableArrays_0.3.svg)](http://pkg.julialang.org/?pkg=ImmutableArrays&ver=0.3) +- Julia 0.4: [![ImmutableArrays](http://pkg.julialang.org/badges/ImmutableArrays_0.4.svg)](http://pkg.julialang.org/?pkg=ImmutableArrays&ver=0.4) ## Features @@ -24,3 +25,6 @@ Statically-sized immutable vectors and matrices. [Jay Weisskopf's gist](https://gist.github.com/jayschwa/5250636). - Travis CI integration by Jay Weisskopf (@jayschwa). - Additional feedback and testing provided by Olli Wilkman (@dronir). + +## License +This package is available under the MIT "Expat" License. See [LICENSE.md](./LICENSE.md). diff --git a/REQUIRE b/REQUIRE index 35c5fce..df77a41 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1 +1,2 @@ +julia 0.3 Compat