Skip to content

Commit

Permalink
Update scripts, add version to Project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Apr 30, 2019
1 parent 5856a6a commit 31fa0b9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 20 deletions.
22 changes: 7 additions & 15 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ authors = ["ScottPJones <scottjones@alum.mit.edu>"]
keywords = ["Strings", "Characters", "Formatting", "Intern", "Unicode", "Regex"]
license = "MIT"
uuid = "7bddbee9-b4ee-5d4f-bf0b-c84b4398bbf6"
version = "1.0.0"

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

[compat]
InternedStrings = "≥ 0.7.0"
HTML_Entities = "≥ 1.0.0"
ModuleInterfaceTools = "≥ 1.0.0"
StrFormat = "≥ 1.0.0"
ChrBase = "≥ 1.0.0"
Format = "≥ 1.0.0"
Emoji_Entities = "≥ 1.0.0"
StrAPI = "≥ 1.0.0"
MurmurHash3 = "≥ 1.0.0"
julia = "^1.0.0"
PCRE2 = "≥ 1.0.0"
Format = "≥ 1.0.0"
ModuleInterfaceTools = "≥ 1.0.0"
InternedStrings = "≥ 0.7.0"
StrTables = "≥ 1.0.0"
StrEntities = "≥ 1.0.0"
StrBase = "≥ 1.0.0"
Unicode_Entities = "≥ 1.0.0"
julia = "≥ 1.0.0"
StrFormat = "≥ 1.0.0"
StrRegex = "≥ 1.0.0"
LaTeX_Entities = "≥ 1.0.0"
StrLiterals = "≥ 1.0.0"
CharSetEncodings = "≥ 1.0.0"
StrTables = "≥ 1.0.0"
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- julia_version: 1.0
- julia_version: 1.1
- julia_version: 1
- julia_version: latest

platform:
Expand Down
8 changes: 4 additions & 4 deletions test/setup.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ using BenchmarkTools

using Strs

@static V6_COMPAT || (using REPL)
using REPL

@api test StrAPI, StrBase, StrRegex

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

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

@static test_legacy && (using LegacyStrings)

Expand Down

2 comments on commit 31fa0b9

@ScottPJones
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/449

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" 31fa0b96cd9f2d3e6d3a58a69d7caed41eb59106
git push origin v1.0.0

Please sign in to comment.