From 278cd1edddd5fa88e72dde92c957bb034118b59a Mon Sep 17 00:00:00 2001 From: icweaver Date: Fri, 6 Jun 2025 11:29:23 -0700 Subject: [PATCH] updated links --- README.md | 7 ++++--- docs/make.jl | 5 ++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 57ee912..bf4e7bd 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # CALCEPH.jl -[![Build Status](https://github.com/JuliaAstro/CALCEPH.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/JuliaAstro/CALCEPH.jl/actions/workflows/CI.yml) -[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.github.io/CALCEPH.jl/stable/) -[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAstro.github.io/CALCEPH.jl/dev/) +[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastro.org/CALCEPH/stable/) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliaastro.org/CALCEPH.jl/dev/) + +[![CI](https://github.com/JuliaAstro/CALCEPH.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaAstro/CALCEPH.jl/actions/workflows/CI.yml) This is a julia wrapper for [CALCEPH](https://www.imcce.fr/inpop/calceph/) a C library for reading planetary ephemeris files, such as [INPOPxx](https://www.imcce.fr/inpop), JPL DExxx and SPICE ephemeris files. diff --git a/docs/make.jl b/docs/make.jl index 1b22e1e..4854be3 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -9,9 +9,12 @@ makedocs( "Tutorial" => "tutorial.md", "API" => "api.md" ], + format = Documenter.HTML(; + canonical = "https://JuliaAstro.org/CALCEPH/stable/", + ), ) deploydocs( repo = "github.com/JuliaAstro/CALCEPH.jl.git", - target = "build", + versions = ["stable" => "v^", "v#.#"], # Restrict to minor releases )