Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update links #9

Merged
merged 3 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# FastCholesky

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://biaslab.github.io/FastCholesky.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://biaslab.github.io/FastCholesky.jl/dev/)
[![Build Status](https://github.com/biaslab/FastCholesky.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/biaslab/FastCholesky.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/biaslab/FastCholesky.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/biaslab/FastCholesky.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://reactivebayes.github.io/FastCholesky.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://reactivebayes.github.io/FastCholesky.jl/dev/)
[![Build Status](https://github.com/reactivebayes/FastCholesky.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/reactivebayes/FastCholesky.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/reactivebayes/FastCholesky.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/reactivebayes/FastCholesky.jl)
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
[![PkgEval](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/F/FastCholesky.svg)](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/F/FastCholesky.html)

Expand All @@ -12,4 +12,4 @@ This package exports `fastcholesky` function, which works exactly like the `chol

# License

[MIT License](LICENSE) Copyright (c) 2021-2024 BIASlab
[MIT License](LICENSE) Copyright (c) 2021-2024 BIASlab, 2024-present ReactiveBayes
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ DocMeta.setdocmeta!(FastCholesky, :DocTestSetup, :(using FastCholesky, LinearAlg
makedocs(;
modules=[FastCholesky],
authors="Bart van Erp <[email protected]>, Bagaev Dmitry <[email protected]> and contributors",
repo="https://github.com/biaslab/FastCholesky.jl/blob/{commit}{path}#{line}",
repo="https://github.com/reactivebayes/FastCholesky.jl/blob/{commit}{path}#{line}",
sitename="FastCholesky.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://biaslab.github.io/FastCholesky.jl",
canonical="https://reactivebayes.github.io/FastCholesky.jl",
edit_link="main",
assets=String[],
),
pages=["Home" => "index.md"],
)

deploydocs(; repo="github.com/biaslab/FastCholesky.jl", devbranch="main")
deploydocs(; repo="github.com/ReactiveBayes/FastCholesky.jl", devbranch="main", forcepush=true)
Loading