Skip to content

Commit 12f6c4e

Browse files
committed
Update versions & drop support for Julia v0.x
1 parent 5e679db commit 12f6c4e

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

Diff for: .travis.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 0.6
8-
- 0.7
97
- 1.0
108
- 1.1
119
- nightly
@@ -30,7 +28,7 @@ git:
3028

3129
## uncomment the following lines to override the default test script
3230
script:
33-
- 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)'
31+
- 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)'
3432
after_success:
3533
# push coverage results to Coveralls & Codecov
36-
- 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())'
34+
- julia -e 'using Pkg; cd(Pkg.dir("ModuleInterfaceTools")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'

Diff for: Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ keywords = ["Packages", "API", "Modules"]
44
license = "MIT"
55
desc = "Macro to help manage module and package APIs"
66
authors = ["ScottPJones <[email protected]>"]
7-
version = "0.1.8"
7+
version = "0.2.0"
88

99
[deps]
1010

Diff for: REQUIRE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
julia 0.6 2-
1+
julia 1 2-

Diff for: appveyor.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
environment:
22
matrix:
3-
- julia_version: 0.6
4-
- julia_version: 0.7
53
- julia_version: 1.0
64
- julia_version: 1.1
75
- julia_version: latest

0 commit comments

Comments
 (0)