Skip to content

Commit 1585eef

Browse files
committed
chore: Prepare release
1 parent 7356028 commit 1585eef

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [0.12.0] - 2024-07-05
5+
## [0.13.0] - 2024-10-23
66

77
### Bug Fixes
88

99
- Expose adaptation settings (Adrian Seyboldt)
1010

1111
- Append missing values for non-diverging draws (Adrian Seyboldt)
1212

13+
- Fix bug where step size stats were not updated after tuning (Adrian Seyboldt)
14+
1315

1416
### Features
1517

@@ -21,6 +23,14 @@ All notable changes to this project will be documented in this file.
2123

2224
- Add low-rank modified mass matrix adaptation (Adrian Seyboldt)
2325

26+
- Make cpu_math parallelization configurable (Adrian Seyboldt)
27+
28+
- Add transforming adaptation (Adrian Seyboldt)
29+
30+
- Improve error info for BadInitGrad (Adrian Seyboldt)
31+
32+
- Do not report invalid gradients for transform adapt (Adrian Seyboldt)
33+
2434

2535
### Miscellaneous Tasks
2636

@@ -30,11 +40,19 @@ All notable changes to this project will be documented in this file.
3040

3141
- Update changelog (Adrian Seyboldt)
3242

43+
- Prepare release (Adrian Seyboldt)
44+
45+
- Prepare release (Adrian Seyboldt)
46+
47+
- Update dependencies (Adrian Seyboldt)
48+
3349

3450
### Refactor
3551

3652
- Switch to arrow-rs (Adrian Seyboldt)
3753

54+
- Refactor mass matrix adaptation traits (Adrian Seyboldt)
55+
3856

3957
### Styling
4058

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "nuts-rs"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = [
5-
"Adrian Seyboldt <[email protected]>",
6-
"PyMC Developers <[email protected]>",
5+
"Adrian Seyboldt <[email protected]>",
6+
"PyMC Developers <[email protected]>",
77
]
88
edition = "2021"
99
license = "MIT"

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
//!
3131
//! impl CpuLogpFunc for PosteriorDensity {
3232
//! type LogpError = PosteriorLogpError;
33+
//!
34+
//! // Only used for transforming adaptation.
3335
//! type TransformParams = ();
3436
//!
3537
//! // We define a 10 dimensional normal distribution

0 commit comments

Comments
 (0)