Skip to content

Commit 341ea39

Browse files
committed
Update Project.toml & scripts for Julia v1.1
1 parent 853b303 commit 341ea39

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ julia:
77
- 0.6
88
- 0.7
99
- 1.0
10+
- 1.1
1011
- nightly
1112
notifications:
1213
email: false
@@ -28,11 +29,7 @@ git:
2829
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
2930

3031
## uncomment the following lines to override the default test script
31-
#script:
32-
# - julia -e 'if VERSION < v"0.7.0-DEV.5183" ; Pkg.clone(pwd()); else; import Pkg; Pkg.add(pwd()); end; Pkg.test("StrAPI"; coverage=true)'
3332

3433
after_success:
35-
# push coverage results to Coveralls
36-
- julia -e 'cd(Pkg.dir("StrAPI")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
37-
# push coverage results to Codecov
38-
- julia -e 'cd(Pkg.dir("StrAPI")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
34+
# push coverage results to Coveralls & Codecov
35+
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrAPI")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ keywords = ["Strings", "Characters", "Encodings"]
44
license = "MIT"
55
desc = "Basic API for string encodings, character sets, etc."
66
authors = ["ScottPJones <scottjones@alum.mit.edu>"]
7-
version = "0.1.9"
7+
version = "0.1.10"
88

99
[deps]
1010
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
julia 0.6 2-
2-
ModuleInterfaceTools 0.1.7
2+
ModuleInterfaceTools 0.1.8

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ platform:
1313
## (tests will run but not make your overall status red)
1414
matrix:
1515
allow_failures:
16-
- julia_version: 1.0
1716
- julia_version: latest
1817

1918
branches:

0 commit comments

Comments
 (0)