Skip to content

Commit

Permalink
Update versions & drop support for Julia v0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Feb 4, 2019
1 parent 5e679db commit 12f6c4e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Expand Up @@ -4,8 +4,6 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- nightly
Expand All @@ -30,7 +28,7 @@ git:

## uncomment the following lines to override the default test script
script:
- julia -e 'mit="ModuleInterfaceTools"; if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); Pkg.test(mit; coverage=true); else; import Pkg; using UUIDs; p = "Project.toml"; uuid = "5cb8414e-7aab-5a03-a681-351269c074bf"; write(p, replace(read(p, String), uuid => uuid4())); Pkg.update(); end; Pkg.test(;coverage=true)'
- julia -e 'mit="ModuleInterfaceTools"; import Pkg; using UUIDs; p = "Project.toml"; uuid = "5cb8414e-7aab-5a03-a681-351269c074bf"; write(p, replace(read(p, String), uuid => uuid4())); Pkg.update(); Pkg.test(;coverage=true)'
after_success:
# push coverage results to Coveralls & Codecov
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("ModuleInterfaceTools")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("ModuleInterfaceTools")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
2 changes: 1 addition & 1 deletion Project.toml
Expand Up @@ -4,7 +4,7 @@ keywords = ["Packages", "API", "Modules"]
license = "MIT"
desc = "Macro to help manage module and package APIs"
authors = ["ScottPJones <scottjones@alum.mit.edu>"]
version = "0.1.8"
version = "0.2.0"

[deps]

Expand Down
2 changes: 1 addition & 1 deletion REQUIRE
@@ -1 +1 @@
julia 0.6 2-
julia 1 2-
2 changes: 0 additions & 2 deletions appveyor.yml
@@ -1,7 +1,5 @@
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1.0
- julia_version: 1.1
- julia_version: latest
Expand Down

0 comments on commit 12f6c4e

Please sign in to comment.