From d6ab10afb993c6c02ad8affe70ccf200c635c025 Mon Sep 17 00:00:00 2001 From: Xianda Sun Date: Fri, 11 Oct 2024 20:11:54 +0100 Subject: [PATCH] version bump --- Project.toml | 2 +- src/AbstractMCMC.jl | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index f57b1ff..c4ef9ae 100644 --- a/Project.toml +++ b/Project.toml @@ -3,7 +3,7 @@ uuid = "80f14c24-f653-4e6a-9b94-39d6b0f70001" keywords = ["markov chain monte carlo", "probabilistic programming"] license = "MIT" desc = "A lightweight interface for common MCMC methods." -version = "5.4.0" +version = "5.5.0" [deps] BangBang = "198e06fe-97b7-11e9-32a5-e1d131e6ad66" diff --git a/src/AbstractMCMC.jl b/src/AbstractMCMC.jl index e490237..8343bfa 100644 --- a/src/AbstractMCMC.jl +++ b/src/AbstractMCMC.jl @@ -100,6 +100,7 @@ word, the sampler should implement a consistent transformation between its inter and the vector representation of the parameter values. """ function setparams!! end + include("samplingstats.jl") include("logging.jl") include("interface.jl")