Skip to content

Commit

Permalink
Add a Project file, remove REQUIRE, declare version 1.0 (#88)
Browse files Browse the repository at this point in the history
Changes:
* Raise the minimum Julia version to 1.0
* Simplify the Travis coverage submission setup
* Test on Julia 1.0 (LTS), 1.3 (stable), and nightly
* Add a Project.toml file
* Set the package version to 1.0.0
* Remove the now-unused REQUIRE file
* Add a standard .gitignore file
  • Loading branch information
ararslan authored Nov 29, 2019
1 parent 38fc5c4 commit 4d6c504
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 14 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
docs/build
docs/site
Manifest.toml
19 changes: 7 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
language: julia
os:
- linux
- linux
julia:
- 0.7
- 1.0
- nightly
sudo: false
- 1.0
- 1.3
- nightly
notifications:
email: false
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd())'
# - julia -e 'Pkg.test("Combinatorics", coverage=true)'
after_success:
- julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("Combinatorics")); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(process_folder())'
email: false
codecov: true
coveralls: true
17 changes: 17 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name = "Combinatorics"
uuid = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
version = "1.0.0"

[deps]
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"

[compat]
Polynomials = "0.5, 0.6"
julia = "1"

[extras]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["LinearAlgebra", "Test"]
2 changes: 0 additions & 2 deletions REQUIRE

This file was deleted.

2 comments on commit 4d6c504

@ararslan
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
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/6026

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>" 4d6c504d11f05506159c171521753c0647322d00
git push origin v1.0.0

Please sign in to comment.