From 5c92d466652fa22af3aae4a8529a9290fea1bfb9 Mon Sep 17 00:00:00 2001 From: Adrian Seyboldt Date: Wed, 23 Oct 2024 16:29:24 +0200 Subject: [PATCH] chore: Prepare release --- CHANGELOG.md | 20 +++++++++++++++++++- Cargo.toml | 6 +++--- src/lib.rs | 2 ++ 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a774d96..a07cf6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [0.12.0] - 2024-07-05 +## [0.13.0] - 2024-10-23 ### Bug Fixes @@ -10,6 +10,8 @@ All notable changes to this project will be documented in this file. - Append missing values for non-diverging draws (Adrian Seyboldt) +- Fix bug where step size stats were not updated after tuning (Adrian Seyboldt) + ### Features @@ -21,6 +23,14 @@ All notable changes to this project will be documented in this file. - Add low-rank modified mass matrix adaptation (Adrian Seyboldt) +- Make cpu_math parallelization configurable (Adrian Seyboldt) + +- Add transforming adaptation (Adrian Seyboldt) + +- Improve error info for BadInitGrad (Adrian Seyboldt) + +- Do not report invalid gradients for transform adapt (Adrian Seyboldt) + ### Miscellaneous Tasks @@ -30,11 +40,19 @@ All notable changes to this project will be documented in this file. - Update changelog (Adrian Seyboldt) +- Prepare release (Adrian Seyboldt) + +- Prepare release (Adrian Seyboldt) + +- Update dependencies (Adrian Seyboldt) + ### Refactor - Switch to arrow-rs (Adrian Seyboldt) +- Refactor mass matrix adaptation traits (Adrian Seyboldt) + ### Styling diff --git a/Cargo.toml b/Cargo.toml index 216d117..f430478 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "nuts-rs" -version = "0.12.1" +version = "0.13.0" authors = [ - "Adrian Seyboldt ", - "PyMC Developers ", + "Adrian Seyboldt ", + "PyMC Developers ", ] edition = "2021" license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index 678f6a8..b86b0f3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,6 +30,8 @@ //! //! impl CpuLogpFunc for PosteriorDensity { //! type LogpError = PosteriorLogpError; +//! +//! // Only used for transforming adaptation. //! type TransformParams = (); //! //! // We define a 10 dimensional normal distribution