Skip to content

Commit

Permalink
Update for Julia v1.1, drop support for v0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Feb 5, 2019
1 parent ba7f41b commit 32c418a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
8 changes: 2 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- nightly
notifications:
email: false
Expand All @@ -20,9 +19,6 @@ git:
# - julia: nightly

# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); else; using Pkg; Pkg.add(pwd()); end; Pkg.test("StrFormat"; coverage=true)'

after_success:
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["ScottPJones <scottjones@alum.mit.edu>"]
keywords = ["Strings", "Literals", "printf", "Format"]
license = "MIT"
uuid = "b5087856-efa9-5a6d-8e6f-97303a7af894"
version = "0.1.5"
version = "0.2.0"

[deps]
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf"
Expand Down
8 changes: 4 additions & 4 deletions REQUIRE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
julia 0.6 2-
ModuleInterfaceTools 0.1.6
Format 0.7.2
StrLiterals 0.1.6
julia 1 2-
ModuleInterfaceTools 0.2.0
Format 0.8.0
StrLiterals 0.2.0
3 changes: 1 addition & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1.0
- julia_version: 1.1
- julia_version: latest

platform:
Expand Down

0 comments on commit 32c418a

Please sign in to comment.