Skip to content

Commit

Permalink
reexport cholinv
Browse files Browse the repository at this point in the history
  • Loading branch information
bvdmitri committed Oct 17, 2023
1 parent 9dc61ab commit cdadfb7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ name = "RxInfer"
uuid = "86711068-29c9-4ff7-b620-ae75d7495b3d"
authors = ["Bagaev Dmitry <d.v.bagaev@tue.nl> and contributors"]
# Do not forget to update the version in the `codemeta.json` too
version = "2.13.1"
version = "2.13.2"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
DomainSets = "5b8099bc-c8ec-5219-889f-1d9e522a28bf"
FastCholesky = "2d5283b6-8564-42b6-bb00-83ed8e915756"
GraphPPL = "b3f8163a-e979-4e85-b43e-1f63d8c8b42c"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
Expand All @@ -23,6 +24,7 @@ TupleTools = "9d95972d-f1c8-5527-a6e0-b4b365fa01f6"
DataStructures = "0.18"
Distributions = "0.25"
DomainSets = "0.5.2, 0.6"
FastCholesky = "1.3.0"
GraphPPL = "3.1.0"
MacroTools = "0.5.6"
Optim = "1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"downloadUrl": "https://github.com/biaslab/RxInfer.jl/releases",
"issueTracker": "https://github.com/biaslab/RxInfer.jl/issues",
"name": "RxInfer.jl",
"version": "2.13.1",
"version": "2.13.2",
"description": "Julia package for automated, scalable and efficient Bayesian inference on factor graphs with reactive message passing. ",
"applicationCategory": "Statistics",
"developmentStatus": "active",
"readme": "https://biaslab.github.io/RxInfer.jl/stable/",
"softwareVersion": "2.13.1",
"softwareVersion": "2.13.2",
"keywords": [
"Bayesian inference",
"message passing",
Expand Down
2 changes: 1 addition & 1 deletion src/RxInfer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module RxInfer

using Reexport

@reexport using ReactiveMP, GraphPPL, Rocket, Distributions
@reexport using ReactiveMP, GraphPPL, Rocket, Distributions, FastCholesky

include("helpers.jl")
include("rocket.jl")
Expand Down

2 comments on commit cdadfb7

@bvdmitri
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/93591

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.13.2 -m "<description of version>" cdadfb7bc61a2f91440fd538cd2706b8fd9566f7
git push origin v2.13.2

Please sign in to comment.