Skip to content

Commit c6f4422

Browse files
committed
Update versions, scripts for Julia v1.1, drop support of v0.x
1 parent 78cdb25 commit c6f4422

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
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
@@ -28,8 +27,7 @@ matrix:
2827
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
2928

3029
## uncomment the following lines to override the default test script
31-
#script:
3230

3331
after_success:
3432
# push coverage results to Coveralls & Codecov
35-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("ChrBase")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
33+
- julia -e 'using Pkg; cd(Pkg.dir("ChrBase")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ keywords = ["Characters"]
44
license = "MIT"
55
desc = "Basic functionality for Chr type"
66
authors = ["ScottPJones <scottjones@alum.mit.edu>"]
7-
version = "0.1.10"
7+
version = "0.2.0"
88

99
[deps]
10-
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1110
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
11+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1212

1313
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf"
1414

REQUIRE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 0.6 2-
2-
ModuleInterfaceTools 0.1.7
3-
StrAPI 0.1.9
4-
CharSetEncodings 0.1.9
1+
julia 1 2-
2+
ModuleInterfaceTools 0.2.0
3+
StrAPI 0.2.0
4+
CharSetEncodings 0.2.0

appveyor.yml

Lines changed: 1 addition & 3 deletions
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:
@@ -13,7 +12,6 @@ platform:
1312
## (tests will run but not make your overall status red)
1413
matrix:
1514
allow_failures:
16-
# - julia_version: 1.0
1715
- julia_version: latest
1816

1917
branches:

0 commit comments

Comments
 (0)