Skip to content

Commit dc6a72d

Browse files
authored
Merge pull request #33 from JuliaAstro/icweaver-canonize
Canonize
2 parents 643a612 + 5a64b46 commit dc6a72d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

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

3-
*Julia wrapper for NASA NAIF's SPICE toolkit*
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastro.org/SPICE/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliaastro.org/SPICE.jl/dev)
45

5-
[![Build Status](https://github.com/juliaastro/SPICE.jl/workflows/CI/badge.svg)](https://github.com/juliaastro/SPICE.jl/actions)
6-
[![Coverage](https://codecov.io/gh/juliaastro/SPICE.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/juliaastro/SPICE.jl)
6+
*Julia wrapper for NASA NAIF's SPICE toolkit*
77

8-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastro.github.io/SPICE.jl/stable)
9-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliaastro.github.io/SPICE.jl/dev)
8+
[![CI](https://github.com/JuliaAstro/SPICE.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaAstro/SPICE.jl/actions/workflows/CI.yml)
9+
[![codecov](https://codecov.io/gh/juliaastro/SPICE.jl/graph/badge.svg?token=AeeqcFrGBM)](https://codecov.io/gh/juliaastro/SPICE.jl)
1010

1111
**SPICE.jl** is a Julia wrapper for the [SPICE toolkit](https://naif.jpl.nasa.gov/naif/index.html) which is provided by NASA's Navigation and Ancillary Information Facility (NAIF).
1212
It provides functionality to read SPICE data files and compute derived observation geometry such as altitude, latitude/longitude and lighting angles.

docs/make.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ makedocs(
1212
format = Documenter.HTML(
1313
prettyurls = get(ENV, "CI", nothing) == "true",
1414
size_threshold = 800*1024,
15+
canonical="https://juliaastro.org/SPICE/stable/",
1516
),
1617
repo = GitHub("JuliaAstro/SPICE.jl"),
1718
sitename = "SPICE.jl",
@@ -26,5 +27,6 @@ makedocs(
2627

2728
deploydocs(
2829
repo = "github.com/JuliaAstro/SPICE.jl.git",
29-
target = "build",
30+
push_preview = true,
31+
versions = ["stable" => "v^", "v#.#"], # Restrict to minor releases
3032
)

0 commit comments

Comments
 (0)