From 9c4cca615d9682796b40bc0f69629b4c6f9d13f9 Mon Sep 17 00:00:00 2001 From: bvdmitri Date: Wed, 10 Jan 2024 20:12:20 +0100 Subject: [PATCH 1/2] Replace links to the new organization --- README.md | 16 ++++++++-------- docs/make.jl | 6 +++--- docs/src/index.md | 6 +++--- src/densities/mixture.jl | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 3c7f2e8..94ebba8 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,19 @@ # BayesBase -[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://biaslab.github.io/BayesBase.jl/stable/) -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://biaslab.github.io/BayesBase.jl/dev/) -[![Build Status](https://github.com/biaslab/BayesBase.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/biaslab/BayesBase.jl/actions/workflows/CI.yml?query=branch%3Amain) -[![Coverage](https://codecov.io/gh/biaslab/BayesBase.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/biaslab/BayesBase.jl) +[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://reactivebayes.github.io/BayesBase.jl/stable/) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://reactivebayes.github.io/BayesBase.jl/dev/) +[![Build Status](https://github.com/reactivebayes/BayesBase.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/reactivebayes/BayesBase.jl/actions/workflows/CI.yml?query=branch%3Amain) +[![Coverage](https://codecov.io/gh/reactivebayes/BayesBase.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/reactivebayes/BayesBase.jl) [![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle) -`BayesBase` is a package that serves as an umbrella, defining, exporting, and re-exporting methods essential for Bayesian statistics specifically for the [`RxInfer` ecosystem](https://github.com/biaslab/RxInfer.jl). +`BayesBase` is a package that serves as an umbrella, defining, exporting, and re-exporting methods essential for Bayesian statistics specifically for the [`RxInfer` ecosystem](https://github.com/reactivebayes/RxInfer.jl). Related projects: -- [`RxInfer`](https://github.com/biaslab/RxInfer.jl) -- [`ExponentialFamily`](https://github.com/biaslab/ExponentialFamily.jl) +- [`RxInfer`](https://github.com/reactivebayes/RxInfer.jl) +- [`ExponentialFamily`](https://github.com/reactivebayes/ExponentialFamily.jl) # License -[MIT License](LICENSE) Copyright (c) 2023-2024 BIASlab +[MIT License](LICENSE) Copyright (c) 2023-2024 reactivebayes diff --git a/docs/make.jl b/docs/make.jl index 775ef67..18fb672 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -6,11 +6,11 @@ DocMeta.setdocmeta!(BayesBase, :DocTestSetup, :(using BayesBase); recursive=true makedocs(; modules=[BayesBase], authors="Bagaev Dmitry and contributors", - repo="https://github.com/biaslab/BayesBase.jl/blob/{commit}{path}#{line}", + repo="https://github.com/reactivebayes/BayesBase.jl/blob/{commit}{path}#{line}", sitename="BayesBase.jl", format=Documenter.HTML(; prettyurls=get(ENV, "CI", "false") == "true", - canonical="https://biaslab.github.io/BayesBase.jl", + canonical="https://reactivebayes.github.io/BayesBase.jl", edit_link="main", assets=String[], ), @@ -20,6 +20,6 @@ makedocs(; ) deploydocs(; - repo="github.com/biaslab/BayesBase.jl", + repo="github.com/reactivebayes/BayesBase.jl", devbranch="main", ) diff --git a/docs/src/index.md b/docs/src/index.md index 844f77b..7552b0c 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -4,12 +4,12 @@ CurrentModule = BayesBase # BayesBase.jl -`BayesBase` is a package that serves as an umbrella, defining, exporting, and re-exporting methods essential for Bayesian statistics specifically for the [`RxInfer` ecosystem](https://github.com/biaslab/RxInfer.jl). +`BayesBase` is a package that serves as an umbrella, defining, exporting, and re-exporting methods essential for Bayesian statistics specifically for the [`RxInfer` ecosystem](https://github.com/reactivebayes/RxInfer.jl). Related projects: -- [`RxInfer`](https://github.com/biaslab/RxInfer.jl) -- [`ExponentialFamily`](https://github.com/biaslab/ExponentialFamily.jl) +- [`RxInfer`](https://github.com/reactivebayes/RxInfer.jl) +- [`ExponentialFamily`](https://github.com/reactivebayes/ExponentialFamily.jl) # Index diff --git a/src/densities/mixture.jl b/src/densities/mixture.jl index 1e628e8..048a90b 100644 --- a/src/densities/mixture.jl +++ b/src/densities/mixture.jl @@ -12,7 +12,7 @@ A custom mixture distribution implementation, parameterized by: This implementation solves: * [Distributions.jl Issue 1669](https://github.com/JuliaStats/Distributions.jl/issues/1669) -* [ReactiveMP.jl Issue 253](https://github.com/biaslab/ReactiveMP.jl/issues/253) +* [ReactiveMP.jl Issue 253](https://github.com/reactivebayes/ReactiveMP.jl/issues/253) """ struct MixtureDistribution{C,CT<:Real} From 53995e460b1627a4bb47744a10239af2bc83ee58 Mon Sep 17 00:00:00 2001 From: bvdmitri Date: Wed, 10 Jan 2024 20:14:18 +0100 Subject: [PATCH 2/2] fix Licence --- LICENSE | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index f1a0896..f906d17 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Bagaev Dmitry and contributors +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 94ebba8..53b3320 100644 --- a/README.md +++ b/README.md @@ -16,4 +16,4 @@ Related projects: # License -[MIT License](LICENSE) Copyright (c) 2023-2024 reactivebayes +[MIT License](LICENSE) Copyright (c) 2023-2024 BIASlab, 2024-present ReactiveBayes