Skip to content

Commit 32c418a

Browse files
committed
Update for Julia v1.1, drop support for v0.x
1 parent ba7f41b commit 32c418a

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

.travis.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 0.6
8-
- 0.7
97
- 1.0
8+
- 1.1
109
- nightly
1110
notifications:
1211
email: false
@@ -20,9 +19,6 @@ git:
2019
# - julia: nightly
2120

2221
# uncomment the following lines to override the default test script
23-
#script:
24-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
25-
# - julia -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); else; using Pkg; Pkg.add(pwd()); end; Pkg.test("StrFormat"; coverage=true)'
2622

2723
after_success:
28-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
24+
- julia -e 'using Pkg; cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = ["ScottPJones <[email protected]>"]
44
keywords = ["Strings", "Literals", "printf", "Format"]
55
license = "MIT"
66
uuid = "b5087856-efa9-5a6d-8e6f-97303a7af894"
7-
version = "0.1.5"
7+
version = "0.2.0"
88

99
[deps]
1010
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf"

REQUIRE

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 0.6 2-
2-
ModuleInterfaceTools 0.1.6
3-
Format 0.7.2
4-
StrLiterals 0.1.6
1+
julia 1 2-
2+
ModuleInterfaceTools 0.2.0
3+
Format 0.8.0
4+
StrLiterals 0.2.0

appveyor.yml

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

87
platform:

0 commit comments

Comments
 (0)