Skip to content

Commit 3a69592

Browse files
authored
Merge pull request #191 from JuliaMath/aa/future
Clean up gitignores, update Documenter, bump package version
2 parents 8c3e478 + bc52f97 commit 3a69592

File tree

6 files changed

+11
-159
lines changed

6 files changed

+11
-159
lines changed

.gitignore

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
*.jl.cov
22
*.jl.*.cov
33
*.jl.mem
4-
deps/deps.jl
5-
deps/build.log
6-
deps/downloads
7-
deps/usr
8-
deps/src
94
docs/build
105
docs/site
6+
Manifest.toml

.travis.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,9 @@ os:
55
julia:
66
- 1.3
77
- nightly
8-
98
notifications:
109
email: false
11-
#script: # the default script is equivalent to the following
12-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
13-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("SpecialFunctions"); Pkg.test("SpecialFunctions"; coverage=true)';
14-
after_success:
15-
- julia -e 'cd(Pkg.dir("SpecialFunctions")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
16-
17-
10+
coveralls: true
1811
jobs:
1912
include:
2013
- stage: "Documentation"

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SpecialFunctions"
22
uuid = "276daf66-3868-5448-9aa4-cd146d93841b"
3-
version = "0.8.0"
3+
version = "0.9.0"
44

55
[deps]
66
OpenSpecFun_jll = "efe28fd5-8261-553b-a9e1-b2916fc3738e"

docs/Manifest.toml

Lines changed: 0 additions & 130 deletions
This file was deleted.

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
44

55
[compat]
6-
Documenter = "~0.20"
6+
Documenter = "~0.24"

docs/make.jl

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
using SpecialFunctions, Documenter
22

3-
makedocs(
4-
modules = [SpecialFunctions],
5-
sitename = "SpecialFunctions.jl",
6-
authors = "Jeff Bezanson, Stefan Karpinski, Viral B. Shah, et al.",
7-
pages = [
8-
"Home" => "index.md",
9-
"Overview" => "functions_overview.md",
10-
"List" => "functions_list.md",
11-
],
12-
)
3+
makedocs(modules=[SpecialFunctions],
4+
sitename="SpecialFunctions.jl",
5+
authors="Jeff Bezanson, Stefan Karpinski, Viral B. Shah, et al.",
6+
pages=["Home" => "index.md",
7+
"Overview" => "functions_overview.md",
8+
"List" => "functions_list.md"])
139

14-
deploydocs(
15-
repo = "github.com/JuliaMath/SpecialFunctions.jl.git",
16-
target = "build",
17-
)
10+
deploydocs(repo="github.com/JuliaMath/SpecialFunctions.jl.git")

0 commit comments

Comments
 (0)