Skip to content

Commit

Permalink
Create Project.toml, drop REQUIRE (#22)
Browse files Browse the repository at this point in the history
* Create Project.toml, drop REQUIRE

* Drop Julia 0.6 from Travis tests

* Version 0.2.0

* Drop 0.7 from Travis, simplify

* Drop Julia 0.6/0.7 from Appveyor
  • Loading branch information
dm3 authored and Sam Morrison committed Jul 18, 2019
1 parent 9597182 commit e01ecdb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 30 deletions.
2 changes: 0 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1
- julia_version: nightly

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@
/deps/downloads
/deps/src
/deps/usr
/deps/build.log
Manifest.toml
26 changes: 2 additions & 24 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,14 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- nightly
matrix:
allow_failures:
- julia: nightly
fast_finish: true
notifications:
email: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- |
julia --depwarn=error -e '
VERSION >= v"0.7.0-DEV.3656" && using Pkg
if VERSION >= v"0.7.0-DEV.5183" && (isfile("Project.toml") || isfile("JuliaProject.toml"))
Pkg.build(); Pkg.test(coverage=true)
else
Pkg.clone(pwd()); Pkg.build("CodecLz4"); Pkg.test("CodecLz4"; coverage=true)
end'
after_success:
- |
julia -e '
VERSION >= v"0.7.0-DEV.3656" && using Pkg
VERSION >= v"0.7.0-DEV.5183" || cd(Pkg.dir("CodecLz4"))
Pkg.add("Coverage"); using Coverage
Codecov.submit(process_folder())'
- |
julia -e '
VERSION >= v"0.7.0-DEV.3656" && using Pkg
VERSION >= v"0.7.0-DEV.5183" || cd(Pkg.dir("CodecLz4"))
Pkg.add("Documenter");
include(joinpath("docs", "make.jl"))'
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
12 changes: 12 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name = "CodecLz4"
uuid = "5ba52731-8f18-5e0d-9241-30f10d1ec561"
version = "0.2.0"

[compat]
julia = "1"

[deps]
BinDeps = "9e28174c-4ba2-5203-b857-d8d62c4213ee"
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
4 changes: 0 additions & 4 deletions REQUIRE

This file was deleted.

2 comments on commit e01ecdb

@morris25
Copy link
Collaborator

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/2124

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 v0.2.0 -m "<description of version>" e01ecdbce13c9c96a4d29ac1aa423ed6477a42e6
git push origin v0.2.0

Please sign in to comment.