From fa55835618259f01735c88ae17131f9aca3d9e12 Mon Sep 17 00:00:00 2001 From: LittleBeannie Date: Tue, 8 Sep 2026 11:50:33 -0400 Subject: [PATCH 1/2] Update DESCRIPTION and NEWS.md --- DESCRIPTION | 2 +- NEWS.md | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 9aa3157f..9f3fe4dc 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: simtrial Type: Package Title: Clinical Trial Simulation -Version: 1.0.2 +Version: 1.1.0 Authors@R: c( person("Keaven", "Anderson", email = "keaven_anderson@merck.com", role = c("aut")), person("Yujie", "Zhao", email = "yujie.zhao@merck.com", role = c("aut","cre")), diff --git a/NEWS.md b/NEWS.md index e737ffbd..1c287c7b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,8 +1,16 @@ -# simtrial 1.0.2 +# simtrial 1.1.0 ## Major changes -- The heavy **gt** dependency is replaced by the lightweight **lt** package for rendering summary tables (#371). The `lt()` generic is re-exported so `summary()` output can be rendered with `lt()` after only loading simtrial. `as_gt()` is deprecated but kept for one release; it still returns a `gt_tbl` object and now requires the suggested **gt** package to be installed. +- The heavy **gt** dependency is replaced by the lightweight **lt** package for rendering summary tables. The `lt()` generic is re-exported so `summary()` output can be rendered with `lt()` after only loading simtrial. `as_gt()` is deprecated but kept for one release; it still returns a `gt_tbl` object and now requires the suggested **gt** package to be installed. (#371, thanks to @yihui) + +## Documentation + +- Expanded the details for `sim_fixed_n()` and updated vignettes for the current package interface (#358, thanks to @LittleBeannie). + +## Tests + +- Hardened `sim_gs_n()` and `summary.simtrial_gs_wlr()` tests against upstream **gsDesign2** changes (#368, #369, thanks to @jdblischak). ## Bug fixes From 040472fd55e26710e7adc90eb4533b80df40643a Mon Sep 17 00:00:00 2001 From: Yihui Xie Date: Tue, 8 Sep 2026 11:22:10 -0500 Subject: [PATCH 2/2] restore 1.0.2 header in news [ci skip] Co-authored-by: John Blischak --- NEWS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS.md b/NEWS.md index 1c287c7b..e8251d8e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -12,6 +12,8 @@ - Hardened `sim_gs_n()` and `summary.simtrial_gs_wlr()` tests against upstream **gsDesign2** changes (#368, #369, thanks to @jdblischak). +# simtrial 1.0.2 + ## Bug fixes - `sim_gs_n()` is updated to provide updated efficacy bound when it is one-sided design (#348, thanks to @LittleBeannie).