Skip to content

Commit 30bd932

Browse files
committed
Update Project.toml, REQUIRE, and scripts for Julia v1.1, drop v0.x support
1 parent c8bc88b commit 30bd932

File tree

5 files changed

+13
-16
lines changed

5 files changed

+13
-16
lines changed

.travis.yml

Lines changed: 3 additions & 5 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
@@ -17,7 +16,7 @@ git:
1716
## (tests will run but not make your overall status red)
1817
matrix:
1918
allow_failures:
20-
# - julia: 1.0
19+
- julia: 1.1
2120
- julia: nightly
2221

2322
## uncomment and modify the following lines to manually install system packages
@@ -29,8 +28,7 @@ matrix:
2928
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
3029

3130
## uncomment the following lines to override the default test script
32-
script:
3331

3432
after_success:
3533
# push coverage results to Coveralls & Codecov
36-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrBase")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
34+
- julia -e 'using Pkg; cd(Pkg.dir("StrBase")); 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 @@ authors = ["ScottPJones <[email protected]>"]
44
keywords = ["Strings"]
55
license = "MIT"
66
uuid = "e79e7a6a-7bb1-5a4d-9d64-da657b06f53a"
7-
version = "0.1.11"
7+
version = "0.2.0"
88

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

REQUIRE

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

appveyor.yml

Lines changed: 2 additions & 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,7 @@ platform:
1312
## (tests will run but not make your overall status red)
1413
matrix:
1514
allow_failures:
16-
# - julia_version: 1.0
15+
- julia_version: 1.1
1716
- julia_version: latest
1817

1918
branches:

test/basic.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ end
556556
for (rng, flg) in ((0x00:0x9f, false), (0xa0:0xbf, true), (0xc0:0xff, false))
557557
for cont in rng
558558
@test is_valid(ST, UInt8[0xe0, cont]) == false
559-
if ST === String && (0x80 <= cont <= 0x9f)
559+
if false # ST === String && (0x80 <= cont <= 0x9f)
560560
@test_broken is_valid(ST, UInt8[0xe0, cont, 0x80]) == flg
561561
else
562562
is_valid(ST, UInt8[0xe0, cont, 0x80]) == flg ||

0 commit comments

Comments
 (0)