Skip to content

Commit

Permalink
Update docs to use Documenterv1 (#54)
Browse files Browse the repository at this point in the history
* Require Documenterv1

* Updates for v1 compatibility

* Increment patch number
  • Loading branch information
sethaxen authored Oct 3, 2023
1 parent 893f6ad commit 16384ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PSIS"
uuid = "ce719bf2-d5d0-4fb9-925d-10a81b42ad04"
authors = ["Seth Axen <[email protected]> and contributors"]
version = "0.9.2"
version = "0.9.3"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[compat]
Distributions = "0.21.1, 0.22, 0.23, 0.24, 0.25"
Documenter = "0.27"
Documenter = "1"
Plots = "1"
3 changes: 2 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DocMeta.setdocmeta!(PSIS, :DocTestSetup, :(using PSIS); recursive=true)
makedocs(;
modules=[PSIS],
authors="Seth Axen <[email protected]> and contributors",
repo="https://github.com/arviz-devs/PSIS.jl/blob/{commit}{path}#{line}",
repo=Remotes.GitHub("arviz-devs", "PSIS.jl"),
sitename="PSIS.jl",
format=Documenter.HTML(; prettyurls=get(ENV, "CI", "false") == "true", assets=String[]),
pages=[
Expand All @@ -15,6 +15,7 @@ makedocs(;
"API" => "api.md",
"Internal" => "internal.md",
],
warnonly=:missing_docs,
)

deploydocs(; repo="github.com/arviz-devs/PSIS.jl.git", devbranch="main")

2 comments on commit 16384ae

@sethaxen
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/92703

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.3 -m "<description of version>" 16384ae61300cf98c121fde5a962a60c7c5bbf87
git push origin v0.9.3

Please sign in to comment.