From c5cf3bb410dc4d5db5e68ad82eaeed2c28f1573e Mon Sep 17 00:00:00 2001 From: Dae Woo Kim Date: Mon, 18 May 2026 14:39:19 -0500 Subject: [PATCH 1/2] Fix docs build: add missing exported symbols, drop deprecated-only aliases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The API review upgraded to RegisterMismatchCommon 1.0.3, which renamed several symbols (assertsamesize→checksamesize, checksize_maxshift→ checksizemaxshift, each_point→each_aperture_center, mismatch0→ mismatch_zeroshift) and added non-mutating variants (correctbias, truncatenoise) plus new exports (FFTPROD, inner_threading, set_inner_threading!). The old names are now @deprecate aliases with no Documenter docstrings. Update api.md to match. Co-Authored-By: Claude Sonnet 4.6 --- docs/src/api.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/src/api.md b/docs/src/api.md index 367cc10..bbc56e2 100644 --- a/docs/src/api.md +++ b/docs/src/api.md @@ -19,7 +19,7 @@ mismatch mismatch! mismatch_apertures mismatch_apertures! -mismatch0 +mismatch_zeroshift ``` ## Low-level reusable workflow @@ -41,7 +41,9 @@ nanpad ```@docs correctbias! +correctbias truncatenoise! +truncatenoise ``` ## Utilities @@ -51,8 +53,11 @@ register_translate aperture_grid allocate_mmarrays aperture_range -each_point +each_aperture_center +FFTPROD set_FFTPROD +inner_threading +set_inner_threading! ``` ## Types and helpers (RegisterCore) @@ -91,8 +96,8 @@ WidthLike ## Internal helpers ```@docs -assertsamesize -checksize_maxshift +checksamesize +checksizemaxshift default_aperture_width padranges padsize From 9991afe8679cf09f89ddddfb7d3f08c3366a9f03 Mon Sep 17 00:00:00 2001 From: Dae Woo Kim Date: Mon, 18 May 2026 14:43:29 -0500 Subject: [PATCH 2/2] Replace deprecated mismatch0 with mismatch_zeroshift in index.md doctest Co-Authored-By: Claude Sonnet 4.6 --- docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index 57a4be1..8eca3b7 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -166,7 +166,7 @@ is below a noise threshold. ```jldoctest julia> mm = mismatch([1.0 2.0; 3.0 4.0], [1.0 2.0; 3.0 4.0], (1, 1)); -julia> nd = mismatch0([1.0 2.0; 3.0 4.0], [1.0 2.0; 3.0 4.0]) +julia> nd = mismatch_zeroshift([1.0 2.0; 3.0 4.0], [1.0 2.0; 3.0 4.0]) NumDenom(0.0,60.0) ```