Skip to content

Commit c6ee51a

Browse files
authored
Merge branch 'main' into dev-4.0.0
2 parents e73c6f5 + fca0b4b commit c6ee51a

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
types: [submitted,edited]
88
push:
99
branches:
10-
- 'master'
10+
- 'main'
1111
tags: '*'
1212
schedule:
1313
- cron: '44 9 16 * *' # run the cron job one time per month

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ demo/*.jl
3535
.idea
3636
.vscode/
3737

38+
3839
**/*.aux
3940
**/*.log
4041
**/*.synctex.*

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021-2023 BIASlab
3+
Copyright (c) 2021-2024 BIASlab, 2024-present ReactiveBayes
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![DOI][ci-img]][ci-url] |
66

77
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
8-
[docs-dev-url]: https://biaslab.github.io/GraphPPL.jl/dev
8+
[docs-dev-url]: https://reactivebayes.github.io/GraphPPL.jl/dev
99

1010
[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
11-
[docs-stable-url]: https://biaslab.github.io/GraphPPL.jl/stable
11+
[docs-stable-url]: https://reactivebayes.github.io/GraphPPL.jl/stable
1212

13-
[ci-img]: https://github.com/biaslab/GraphPPL.jl/actions/workflows/ci.yml/badge.svg?branch=master
14-
[ci-url]: https://github.com/biaslab/GraphPPL.jl/actions
13+
[ci-img]: https://github.com/reactivebayes/GraphPPL.jl/actions/workflows/ci.yml/badge.svg?branch=master
14+
[ci-url]: https://github.com/reactivebayes/GraphPPL.jl/actions
1515

1616
GraphPPL.jl is a probabilistic programming language focused on probabilistic graphical models. GraphPPL.jl materializes a probabilistic model as a factor graph and provides a set of tools for model specification. GraphPPL.jl is a part of the [RxInfer](https://rxinfer.ml) ecosystem, but it does not explicitly depend on any inference backend. GraphPPL exports a high-level DSL for model specification and allows users to append arbitrary information to nodes in the model. This information can be used by inference backends to perform inference on the model.
1717

@@ -53,6 +53,7 @@ For more information about GraphPPL.jl please refer to the [documentation](https
5353
> [!NOTE]
5454
> `GraphPPL.jl` API has been changed in version `4.0.0`. See [Migration Guide](https://reactivebayes.github.io/GraphPPL.jl/stable/) for more details.
5555
56+
5657
# License
5758

5859
[MIT License](LICENSE) Copyright (c) 2021-2024 BIASlab, 2024-present ReactiveBayes

docs/make.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,9 @@ makedocs(
2727
)
2828

2929
if get(ENV, "CI", nothing) == "true"
30-
deploydocs(repo = "github.com/ReactiveBayes/GraphPPL.jl.git")
30+
deploydocs(
31+
repo = "github.com/ReactiveBayes/GraphPPL.jl.git",
32+
devbranch = "main",
33+
forcepush = true
34+
)
3135
end

0 commit comments

Comments
 (0)