Skip to content

Commit

Permalink
Merge pull request #9 from ReactiveBayes/dev-biaslab-links
Browse files Browse the repository at this point in the history
Replace links to the new organization
  • Loading branch information
bvdmitri authored Jan 11, 2024
2 parents b73ded1 + 53995e4 commit 7f9808f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Bagaev Dmitry <[email protected]> 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
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 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,11 +6,11 @@ DocMeta.setdocmeta!(BayesBase, :DocTestSetup, :(using BayesBase); recursive=true
makedocs(;
modules=[BayesBase],
authors="Bagaev Dmitry <[email protected]> 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[],
),
Expand All @@ -20,6 +20,6 @@ makedocs(;
)

deploydocs(;
repo="github.com/biaslab/BayesBase.jl",
repo="github.com/reactivebayes/BayesBase.jl",
devbranch="main",
)
6 changes: 3 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/densities/mixture.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 7f9808f

Please sign in to comment.