From dc488f52f232e59402227cf048707efef177c194 Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Fri, 13 Nov 2020 12:53:40 +0100 Subject: [PATCH] Fix documentation URLs. [skip tests] --- README.md | 4 ++-- docs/make.jl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5cba26c6a7..433a04443f 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,8 @@ Or, equivalently, via the `Pkg` API: julia> import Pkg; Pkg.add("CUDA") ``` -For usage instructions and other information, please refer to the documentation at -[juliagpu.gitlab.io](https://juliagpu.gitlab.io/CUDA.jl/). +For usage instructions and other information, please refer to [the +documentation](https://juliagpu.github.io/CUDA.jl/stable/). ## Supporting and Citing diff --git a/docs/make.jl b/docs/make.jl index b32460f3a6..7795b3d68f 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -2,7 +2,7 @@ using Documenter, Literate using CUDA const src = "https://github.com/JuliaGPU/CUDA.jl" -const dst = "https://juliagpu.gitlab.io/CUDA.jl/" +const dst = "https://juliagpu.github.io/CUDA.jl/stable/" function main() ci = get(ENV, "CI", "") == "true"