From 3dd0e1deabe61be9bb757822122877216a1f0207 Mon Sep 17 00:00:00 2001 From: Markus Hauru Date: Thu, 6 Jun 2024 16:54:09 +0100 Subject: [PATCH 1/2] Add note about breaking v0.33.0 changes to HISTORY --- HISTORY.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 2a3929878..0c2f64d14 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,18 @@ +# Release 0.33.0 + +## Breaking changes + +The following exported functions have been removed: + - `constrained_space` + - `get_parameter_bounds` + - `optim_objective` + - `optim_function` + - `optim_problem` + +The same functionality is now offered by the new exported functions + - `maximum_likelihood` + - `maximum_a_posteriori` + # Release 0.30.5 - `essential/ad.jl` is removed, `ForwardDiff` and `ReverseDiff` integrations via `LogDensityProblemsAD` are moved to `DynamicPPL` and live in corresponding package extensions. From f582f8c09109c5bd0826c690b80c1b57a0da37e3 Mon Sep 17 00:00:00 2001 From: Hong Ge <3279477+yebai@users.noreply.github.com> Date: Thu, 6 Jun 2024 16:59:28 +0100 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- HISTORY.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 0c2f64d14..5b1cad0ed 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -3,6 +3,7 @@ ## Breaking changes The following exported functions have been removed: + - `constrained_space` - `get_parameter_bounds` - `optim_objective` @@ -10,6 +11,7 @@ The following exported functions have been removed: - `optim_problem` The same functionality is now offered by the new exported functions + - `maximum_likelihood` - `maximum_a_posteriori`