Skip to content

Commit f868bba

Browse files
JuliaBUGS: Expose new docs files and few minor updates (#376)
closes #374
1 parent e37beaa commit f868bba

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

JuliaBUGS/History.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# JuliaBUGS Changelog
22

3+
## 0.10.1
4+
5+
Expose docs for changes in [v0.10.0](https://github.com/TuringLang/JuliaBUGS.jl/releases/tag/JuliaBUGS-v0.10.0)
6+
37
## 0.10
48

59
This is a major overhaul since v0.9.0. It introduces a faster evaluation mode, a refactored Gibbs sampler API, a new conditioning workflow, and a Turing-like modeling macro along with an ergonomic type system for model parameters.

JuliaBUGS/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "JuliaBUGS"
22
uuid = "ba9fb4c0-828e-4473-b6a1-cd2560fee5bf"
3-
version = "0.10.0"
3+
version = "0.10.1"
44

55
[deps]
66
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

JuliaBUGS/docs/make.jl

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ makedocs(;
99
pages=[
1010
"Home" => "index.md",
1111
"Example" => "example.md",
12+
"Modeling" => [
13+
"Two Macros: `@bugs` & `@model`" => "two_macros.md",
14+
"`@model` Macro" => "model_macro.md",
15+
"`of` Type System" => "of_design_doc.md",
16+
],
1217
"API" => [
1318
"General" => "api/api.md",
1419
"Functions" => "api/functions.md",
@@ -18,7 +23,11 @@ makedocs(;
1823
"Pitfalls" => "pitfalls.md",
1924
"Plotting" => "graph_plotting.md",
2025
"R Interface" => "R_interface.md",
21-
"For Developers" =>
22-
["Parser" => "parser.md", "Notes on BUGS Implementations" => "BUGS_notes.md"],
26+
"For Developers" => [
27+
"Parser" => "parser.md",
28+
"Source Code Generation" => "source_gen.md",
29+
"Implementation Tricks" => "tricks.md",
30+
"Notes on BUGS Implementations" => "BUGS_notes.md",
31+
],
2332
],
2433
)

JuliaBUGS/docs/src/api/functions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ JuliaBUGS.BUGSPrimitives.logdet
4848
JuliaBUGS.BUGSPrimitives.logfact
4949
JuliaBUGS.BUGSPrimitives.loggam
5050
JuliaBUGS.BUGSPrimitives.icloglog
51+
JuliaBUGS.BUGSPrimitives.ilogit
5152
JuliaBUGS.BUGSPrimitives.mexp
5253
JuliaBUGS.BUGSPrimitives.phi
54+
JuliaBUGS.BUGSPrimitives.probit
5355
JuliaBUGS.BUGSPrimitives.pow
5456
JuliaBUGS.BUGSPrimitives.rank
5557
JuliaBUGS.BUGSPrimitives.ranked

0 commit comments

Comments
 (0)