Changes in version 0.6-3 (2025-05-03) NEW FEATURE o The function is_outlier gets the additional argument names (logical). If names = TRUE, the row names of the potential outliers are returned. If names = FALSE (default), an indicator vector is returned that identifies the potential outliers. The names of the elements in the indicator vector correspond to the row names of the data set. Changes in version 0.6-2 (2024-09-07) Misc o Calls of the macros Calloc and Free have been replaced with calls of R_Calloc and R_Free, respectively (see warnings of tests with STRICT_R_HEADERS). Changes in version 0.6-1 (2024-02-08) BUG FIXES o The weighted quantile (other than the median) as computed by the C function wquant0 was incorrect for samples of size n = 2 (if the data were sorted in descending order). o Added an _OPENMP guard in the declaration of default_no_threads in wbacon. Changes in version 0.6 (2021-11-04) Tweaks o In previous versions, the summary method for objects of class wbaconlm was implemented as a wrapper function of stats::summary.lm. But summary.lm detected that it has been called for an object other than a genuine lm object and issued a warning. This warning confused some users. Now we implemented a separate summary method. BUG FIXES o Fixed computation of regression leverages (for weighted regression) in plot method for objects of class wbaconlm. Changes in version 0.5-2 (2021-10-07) Misc o In calls to BLAS and LAPACK, we now use the same new macros that R uses in its code (FCONE, FC_LEN_T, and USE_FC_LEN_T) since version 3.6.2. This approach is recommended in Writing R Extensions, see Chapter 6.6.1. Changes in version 0.5-1 (2021-06-17) BUG FIXES o fixed variadic macro ##__VA_ARGS__ because it is not portable (clang complains) o fixed implicit type conversion of function 'med3' (only detected by clang on Apple M1), now int return type o OpenMP issue: 'omp_set_num_threads' is now guarded by a conditional compilation directive o OpenMP issue: removed '#pragma omp simd' directive in wbacon.c (line 480) because the optimizer was unable to perform the vectorization Changes in version 0.5 (2021-06-15) o Initial release