Changes in version 1.1.7 (2026-03-04) Minor changes - Cleaned up the vignette bibliography to fix a broken hyperlink and replace some others with more durable hyperlinks. Changes in version 1.1.6 Minor changes - Rebuilt vignette PDF to fix invalid URLs flagged by CRAN link checks. - Added jss.bst to inst/vignette-source/ for self-contained vignette rebuilds. Changes in version 1.1.5 Minor changes - Replaced deprecated volatile int with std::atomic for thread synchronization in C++ code, fixing -Wdeprecated-volatile compiler warnings with newer Clang/GCC versions. - Switched to static pre-built PDF vignette using R.rsp::asis, resolving vignette build warnings. Vignette source (.Rnw, .bib, cached .rds files) moved to inst/vignette-source/ for optional manual rebuilding. - Removed install.packages() fallbacks from vignette source code. Changes in version 1.1.4 (2024-09-04) Minor changes - Removed dependency of unmaintained TeachingDemos package for vignette. - Fixed DESCRIPTION to point to GitHub repository for code and issues. - Fixed other minor CRAN warnings. Changes in version 1.1.3 (2022-05-20) Minor changes - Updated vignette to the PDF matching the published Journal of Statistical Software manuscript, shrinking file size. Changes in version 1.1.2.2 (2020-11-26) Minor changes - Added citation file and doi for vignette's JSS publication. Changes in version 1.1.2 (2019-02-24) Minor changes - Fixed a bug causing survival confidence intervals to be incorrect. - Updated vignette to match JSS requests. - Changed cardSim data to match the new simulation in the vignette. Changes in version 1.1.1 (2018-06-02) Major changes - Added vignette Minor changes - Added default value (NULL) to modelForm argument (LocalControl()) Changes in version 1.1.0 (2017-11-22) Major changes - Deprecated the localControlCompetingRisks(), localControlNearestNeighbors(), and (hidden) doLocalControl() functions. - Added a new function in their place, LocalControl(). - The behavior of the three removed functions now exists in this function. - The new “outcomeType” parameter allows users to toggle between the competingRisks and NearestNeighbors functionality. - Deprecated the plotLocalControlCIF and plotLocalControlLTD functions, replaced with s3 (plot()) functions. - Added S3 functions: print() and summary() have also been added for the LocalControl classes. - Changed the structure of the LocalControlCS and LocalControlCR objects. - Removed the summary object. - The summary is now created upon request using the summary() s3 function with the LocalControl classes. - Added a formula interface for LocalControl (beta). LocalControl(data = lindner, modelForm = formula('cardbill ~ abcix | stent + female + acutemi')) Is now a valid alternative to: LocalControl( data = lindner, clusterVars = c("stent", "female", "acutemi"), treatmentColName = "abcix", outcomeColName = "cardbill") Changes in version 1.0.1 (2017-06-03) Minor changes - Changed required R version from R (>= 2.10) to R (>= 3.0.0), due to Rcpp dependency. - Updated title field in DESCRIPTION file to remove redundancies. - Added Apache Version 2.0 LICENSE file. Bug fixes - Fixed warning: variable length arrays are a C99 feature.