Skip to content

Commit 5b70e44

Browse files
committed
Update for Julia v1.1, drop support for v0.x
1 parent cd0f941 commit 5b70e44

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

.travis.yml

Lines changed: 4 additions & 8 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,10 +27,7 @@ git:
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:
32-
# - julia -e 'if VERSION < v"0.7.0-DEV.5183" ; Pkg.clone(pwd()); else; using Pkg; Pkg.add(pwd()); Pkg.up(); end ; Pkg.build("PCRE2"); Pkg.test("PCRE2"; coverage=true)'
30+
3331
after_success:
34-
# push coverage results to Coveralls
35-
- julia -e 'cd(Pkg.dir("PCRE2")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
36-
# push coverage results to Codecov
37-
- julia -e 'cd(Pkg.dir("PCRE2")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
32+
# push coverage results to Coveralls & Codecov
33+
- julia -e 'using Pkg; cd(Pkg.dir("PCRE2")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'

Project.save

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ keywords = ["Strings", "PCRE", "Regex"]
44
license = "MIT"
55
name = "PCRE2"
66
uuid = "c9310f65-a42c-5928-aca3-d34f64192029"
7+
version = "0.2.0"
78

89
[deps]
9-
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
10-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1110
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
1211

1312
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
13+
14+
[extras]
15+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
16+
17+
[targets]
18+
test = ["Test"]

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
julia 0.6
1+
julia 1 2-
22
BinaryProvider
33

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)