Skip to content

Commit 31fa0b9

Browse files
committed
Update scripts, add version to Project.toml
1 parent 5856a6a commit 31fa0b9

File tree

3 files changed

+12
-20
lines changed

3 files changed

+12
-20
lines changed

Project.toml

+7-15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ authors = ["ScottPJones <[email protected]>"]
44
keywords = ["Strings", "Characters", "Formatting", "Intern", "Unicode", "Regex"]
55
license = "MIT"
66
uuid = "7bddbee9-b4ee-5d4f-bf0b-c84b4398bbf6"
7+
version = "1.0.0"
78

89
[deps]
910
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf"
@@ -39,22 +40,13 @@ BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
3940
test = ["Test", "REPL", "BenchmarkTools"]
4041

4142
[compat]
42-
InternedStrings = "≥ 0.7.0"
43-
HTML_Entities = "≥ 1.0.0"
44-
ModuleInterfaceTools = "≥ 1.0.0"
45-
StrFormat = "≥ 1.0.0"
46-
ChrBase = "≥ 1.0.0"
47-
Format = "≥ 1.0.0"
48-
Emoji_Entities = "≥ 1.0.0"
49-
StrAPI = "≥ 1.0.0"
50-
MurmurHash3 = "≥ 1.0.0"
43+
julia = "^1.0.0"
5144
PCRE2 = "≥ 1.0.0"
45+
Format = "≥ 1.0.0"
46+
ModuleInterfaceTools = "≥ 1.0.0"
47+
InternedStrings = "≥ 0.7.0"
48+
StrTables = "≥ 1.0.0"
5249
StrEntities = "≥ 1.0.0"
53-
StrBase = "≥ 1.0.0"
54-
Unicode_Entities = "≥ 1.0.0"
55-
julia = "≥ 1.0.0"
50+
StrFormat = "≥ 1.0.0"
5651
StrRegex = "≥ 1.0.0"
57-
LaTeX_Entities = "≥ 1.0.0"
5852
StrLiterals = "≥ 1.0.0"
59-
CharSetEncodings = "≥ 1.0.0"
60-
StrTables = "≥ 1.0.0"

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
22
matrix:
33
- julia_version: 1.0
4-
- julia_version: 1.1
4+
- julia_version: 1
55
- julia_version: latest
66

77
platform:

test/setup.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ using BenchmarkTools
44

55
using Strs
66

7-
@static V6_COMPAT || (using REPL)
7+
using REPL
88

99
@api test StrAPI, StrBase, StrRegex
1010

1111
const ver = "v0.$(VERSION.minor)"
1212
const git = "https://github.com/JuliaString/"
1313

14-
const pkgdir = @static V6_COMPAT ? Pkg.dir("Strs") : dirname(pathof(Strs))
15-
const RC = @static V6_COMPAT ? Base.REPLCompletions : REPL.REPLCompletions
16-
_uninit(T, len) = @static V6_COMPAT ? T(len) : T(undef, len)
14+
const pkgdir = dirname(pathof(Strs))
15+
const RC = REPL.REPLCompletions
16+
_uninit(T, len) = T(undef, len)
1717

1818
@static test_legacy && (using LegacyStrings)
1919

0 commit comments

Comments
 (0)