Skip to content

Commit e9ce1b8

Browse files
committed
Update for Julia v1.1, drop support for v0.x
1 parent 6ab4541 commit e9ce1b8

File tree

5 files changed

+13
-24
lines changed

5 files changed

+13
-24
lines changed

.travis.yml

+2-4
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,12 +16,11 @@ git:
1716
## (tests will run but not make your overall status red)
1817
matrix:
1918
allow_failures:
20-
- julia: 1.0
2119
- julia: nightly
2220

2321
# uncomment the following lines to override the default test script
2422
#script:
2523

2624
after_success:
2725
# push coverage results to Coveralls & Codecov
28-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrEntities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
26+
- julia -e 'using Pkg; cd(Pkg.dir("StrEntities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'

Project.toml

+1-8
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,15 @@ authors = ["ScottPJones <[email protected]>"]
44
keywords = ["Strings", "Literals", "Entities", "Unicode", "HTML", "LaTeX", "Emoji"]
55
license = "MIT"
66
uuid = "42b7a45b-8021-5b99-aff5-7432580bee1c"
7-
version = "0.1.4"
7+
version = "0.2.0"
88

99
[deps]
10-
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
11-
1210
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf"
1311
StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f" # ekt5t6nt8g0cqhjb
1412
LaTeX_Entities = "9927f19a-46ce-5bdd-a20a-f46a78b61e3d" # ok2sdq4u5xwlc6b0
1513
Emoji_Entities = "fd8f23de-bd2f-5c75-921c-0c9ab51355f5" # 4p6o3reehca95put
1614
HTML_Entities = "7693890a-d069-55fe-a829-b4a6d304f0ee" # xp05kd5mamt92yhj
1715
Unicode_Entities = "a8aa15d3-c567-5e9f-b6cc-4b0f97f09cf7" # c1luci97ry8fxdt7
18-
MurmurHash3 = "b10b62ed-fbae-5ea5-b934-abaf0477b71d"
19-
StrAPI = "69e7dfc3-c4d0-5e14-8d95-d6042a05b383"
20-
ChrBase = "c13fa7b1-fb91-5a40-8b3c-3aad7fd30002"
21-
StrBase = "e79e7a6a-7bb1-5a4d-9d64-da657b06f53a"
22-
StrLiterals = "68059f60-971f-57ff-a2d0-18e7de9ccc84" # 8462oq09ek07knos
2316

2417
[extras]
2518
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

REQUIRE

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
julia 0.6 2-
2-
ModuleInterfaceTools 0.1.6
3-
StrTables 0.2.6
4-
LaTeX_Entities 0.2.5
5-
HTML_Entities 0.2.5
6-
Unicode_Entities 0.2.7
7-
Emoji_Entities 0.2.5
8-
StrLiterals 0.1.5
1+
julia 1 2-
2+
ModuleInterfaceTools 0.2.0
3+
StrTables 0.3.0
4+
LaTeX_Entities 0.3.0
5+
HTML_Entities 0.3.0
6+
Unicode_Entities 0.3.0
7+
Emoji_Entities 0.3.0
8+
StrLiterals 0.2.0

appveyor.yml

+1-3
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:

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
using ModuleInterfaceTools
44

5-
@static VERSION < v"0.7.0-DEV" ? (using Base.Test) : (using Test)
5+
using Test
66

77
@api use StrLiterals, StrEntities
88

0 commit comments

Comments
 (0)