Skip to content

Commit 269254b

Browse files
authored
Merge pull request #95 from JuliaAstro/icweaver-canonize
Canonize
2 parents 1ee37d3 + a426522 commit 269254b

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# CFITSIO.jl
22

3-
[![Build Status](https://github.com/JuliaAstro/CFITSIO.jl/workflows/CI/badge.svg)](https://github.com/JuliaAstro/CFITSIO.jl/actions)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.org/CFITSIO/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAstro.org/CFITSIO.jl/dev)
5+
6+
[![CI](https://github.com/JuliaAstro/CFITSIO.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaAstro/CFITSIO.jl/actions/workflows/ci.yml)
47
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/C/CFITSIO.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html)
58
[![Coverage](https://codecov.io/gh/JuliaAstro/CFITSIO.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaAstro/CFITSIO.jl)
69

7-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.github.io/CFITSIO.jl/stable)
8-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAstro.github.io/CFITSIO.jl/dev)
9-
1010
## C-style interface to CFITSIO functions
1111

1212
- Function names closely mirror the C interface (e.g., `fits_open_file()`).

docs/make.jl

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
using CFITSIO
22
using Documenter
33
using Documenter.Remotes: GitHub
4+
45
DocMeta.setdocmeta!(CFITSIO, :DocTestSetup, :(using CFITSIO); recursive=true)
56

67
include("pages.jl")
8+
79
makedocs(;
8-
modules=[CFITSIO],
9-
authors="JuliaAstro",
10-
repo=GitHub("JuliaAstro/CFITSIO.jl"),
11-
sitename="CFITSIO.jl",
12-
format=Documenter.HTML(;
13-
prettyurls=get(ENV, "CI", "false") == "true",
14-
canonical="https://juliaastro.github.io/CFITSIO.jl",
15-
assets=String[],
10+
modules = [CFITSIO],
11+
authors = "JuliaAstro",
12+
repo = GitHub("JuliaAstro/CFITSIO.jl"),
13+
sitename = "CFITSIO.jl",
14+
format = Documenter.HTML(;
15+
prettyurls = get(ENV, "CI", "false") == "true",
16+
canonical = "https://juliaastro.org/CFITSIO/stable/",
17+
assets = String[],
1618
),
17-
pages=pages
19+
pages = pages,
1820
)
1921

2022
deploydocs(;
21-
repo="github.com/JuliaAstro/CFITSIO.jl",
23+
repo = "github.com/JuliaAstro/CFITSIO.jl",
24+
versions = ["stable" => "v^", "v#.#"], # Restrict to minor releases
2225
)

0 commit comments

Comments
 (0)