From 08d87b4de1497e77911cc4fdafd9a5c6da75ccd1 Mon Sep 17 00:00:00 2001 From: bvdmitri Date: Wed, 10 Jan 2024 20:19:56 +0100 Subject: [PATCH] Replace links to the new organization --- .gitignore | 3 +++ LICENSE | 2 +- README.md | 12 ++++++------ docs/make.jl | 6 +++--- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 95731a5..f67a69f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,6 @@ /Manifest.toml /docs/Manifest.toml /docs/build/ + +.vscode +.idea diff --git a/LICENSE b/LICENSE index ea3e891..f906d17 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 BIASlab +Copyright (c) 2023-2024 BIASlab, 2024-present ReactiveBayes Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e28daef..90aa5da 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # MatrixCorrectionTools -[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://biaslab.github.io/MatrixCorrectionTools.jl/stable/) -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://biaslab.github.io/MatrixCorrectionTools.jl/dev/) -[![Build Status](https://github.com/biaslab/MatrixCorrectionTools.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/biaslab/MatrixCorrectionTools.jl/actions/workflows/CI.yml?query=branch%3Amain) -[![Coverage](https://codecov.io/gh/biaslab/MatrixCorrectionTools.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/biaslab/MatrixCorrectionTools.jl) +[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://reactivebayes.github.io/MatrixCorrectionTools.jl/stable/) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://reactivebayes.github.io/MatrixCorrectionTools.jl/dev/) +[![Build Status](https://github.com/reactivebayes/MatrixCorrectionTools.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/reactivebayes/MatrixCorrectionTools.jl/actions/workflows/CI.yml?query=branch%3Amain) +[![Coverage](https://codecov.io/gh/reactivebayes/MatrixCorrectionTools.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/reactivebayes/MatrixCorrectionTools.jl) [![PkgEval](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/M/MatrixCorrectionTools.svg)](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/M/MatrixCorrectionTools.html) `MatrixCorrectionTools` is a lightweight package that offers a straightforward function called `correction!`. @@ -12,9 +12,9 @@ This function is designed to correct specific properties of a matrix using prede For instance, if a matrix contains zero diagonal entries, this package provides the means to replace (correct) them using either fixed predefined values or a more advanced algorithm based on SVD decomposition. -To learn more about the available correction strategies and see practical examples, please refer to the [documentation](https://biaslab.github.io/MatrixCorrectionTools.jl/stable/). +To learn more about the available correction strategies and see practical examples, please refer to the [documentation](https://reactivebayes.github.io/MatrixCorrectionTools.jl/stable/). # License -[MIT License](LICENSE) Copyright (c) 2023-2024 BIASlab +[MIT License](LICENSE) Copyright (c) 2023-2024 BIASlab, 2024-present ReactiveBayes diff --git a/docs/make.jl b/docs/make.jl index 037aaef..6461e30 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -6,11 +6,11 @@ DocMeta.setdocmeta!(MatrixCorrectionTools, :DocTestSetup, :(using MatrixCorrecti makedocs(; modules=[MatrixCorrectionTools], authors="Bagaev Dmitry ", - repo="https://github.com/biaslab/MatrixCorrectionTools.jl/blob/{commit}{path}#{line}", + repo="https://github.com/reactivebayes/MatrixCorrectionTools.jl/blob/{commit}{path}#{line}", sitename="MatrixCorrectionTools.jl", format=Documenter.HTML(; prettyurls=get(ENV, "CI", "false") == "true", - canonical="https://biaslab.github.io/MatrixCorrectionTools.jl", + canonical="https://reactivebayes.github.io/MatrixCorrectionTools.jl", edit_link="main", assets=String[] ), @@ -20,6 +20,6 @@ makedocs(; ) deploydocs(; - repo="github.com/biaslab/MatrixCorrectionTools.jl", + repo="github.com/reactivebayes/MatrixCorrectionTools.jl", devbranch="main" )