Skip to content

Commit e119b66

Browse files
committed
Clean up exports in essential/Essential
1 parent 763f203 commit e119b66

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ For more details about all of the above, see the changelog of DynamicPPL [here](
2828
Turing.jl's export list has been cleaned up a fair bit. You may need to import things more explicitly than before.
2929

3030
- The `DynamicPPL` and `AbstractMCMC` modules: You will need to `import` or `using Module` yourself, which in turn means that they have to be made available in your project environment.
31+
3132
- `@logprob_str` and `@prob_str` have been removed following a long deprecation period.
3233
- We no longer re-export everything from `Bijectors`. To get around this, add `using Bijectors` at the top of your script (but we prefer if you selectively import).
3334

src/essential/Essential.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ using AdvancedPS: AdvancedPS
1717

1818
include("container.jl")
1919

20-
export @model,
21-
@varname, AutoForwardDiff, AutoReverseDiff, AutoMooncake, @logprob_str, @prob_str
20+
export @model
21+
export @varname
22+
export AutoForwardDiff, AutoReverseDiff, AutoMooncake
2223

2324
end # module

0 commit comments

Comments
 (0)