Skip to content

Commit

Permalink
Replace deprecated elementwise_loglikelihoods with `pointwise_logli…
Browse files Browse the repository at this point in the history
…kelihoods` (#1438)
  • Loading branch information
devmotion authored Oct 11, 2020
1 parent 6dca57e commit 7b76237
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Turing"
uuid = "fce5fe82-541a-59a6-adf8-730c64b5f9a0"
version = "0.14.8"
version = "0.14.9"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
Expand Down Expand Up @@ -39,7 +39,7 @@ Bijectors = "0.8"
Distributions = "0.23.3"
DistributionsAD = "0.6"
DocStringExtensions = "0.8"
DynamicPPL = "0.9.2"
DynamicPPL = "0.9.5"
EllipticalSliceSampling = "0.2, 0.3"
ForwardDiff = "0.10.3"
Libtask = "0.4"
Expand Down
4 changes: 3 additions & 1 deletion src/Turing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ end
# Exports #
###########
# `using` statements for stuff to re-export
using DynamicPPL: elementwise_loglikelihoods, generated_quantities, logprior, logjoint
using DynamicPPL: pointwise_loglikelihoods, elementwise_loglikelihoods,
generated_quantities, logprior, logjoint
using StatsBase: predict

# Turing essentials - modelling macros and inference algorithms
Expand Down Expand Up @@ -130,6 +131,7 @@ export @model, # modelling
arraydist,

predict,
pointwise_loglikelihoods,
elementwise_loglikelihoods,
genereated_quantities,
logprior,
Expand Down
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CmdStan = "6.0.8"
Distributions = "0.23.8"
DistributionsAD = "0.6.3"
DynamicHMC = "2.1.6"
DynamicPPL = "0.9"
DynamicPPL = "0.9.5"
FiniteDifferences = "0.10.8, 0.11"
ForwardDiff = "0.10.12"
MCMCChains = "4.0.4"
Expand Down

2 comments on commit 7b76237

@devmotion
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/22796

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 v0.14.9 -m "<description of version>" 7b762379ea8da40226b761d482aa0a3a62046e28
git push origin v0.14.9

Please sign in to comment.