diff --git a/DESCRIPTION b/DESCRIPTION index aff6f2fa..5f6f1058 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: rlistings Title: Clinical Trial Style Data Readout Listings -Version: 0.2.1.9003 +Version: 0.2.2 Date: 2023-05-02 Authors@R: c( person("Gabriel", "Becker", , "gabembecker@gmail.com", role = c("aut", "cre")), @@ -19,7 +19,7 @@ License: Apache License 2.0 URL: https://github.com/insightsengineering/rlistings BugReports: https://github.com/insightsengineering/rlistings/issues Depends: - formatters (>= 0.4.1.9003), + formatters (>= 0.5.0), methods, tibble Imports: diff --git a/NEWS.md b/NEWS.md index f67d9243..816e68bb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,7 @@ -## rlistings 0.2.1.9003 +## rlistings 0.2.2 + * Moved `export_as_txt` to `formatters`. Added to reexports. + +## rlistings 0.2.1 ### Enhancements * Extend page-size machinery in pagination by allowing the page specification (`page_type`, `pg_width`, diff --git a/README.md b/README.md index d244c185..ac3bc11b 100644 --- a/README.md +++ b/README.md @@ -63,26 +63,27 @@ under active development. ## Installation -For releases from October 2022 it is recommended that you [create and -use a Github -PAT](https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token) -to install the latest version of this package. Once you have the PAT, -run the following: +`rlistings` is available on CRAN and you can install the latest released +version with: ``` r -Sys.setenv(GITHUB_PAT = "your_access_token_here") -if (!require("remotes")) install.packages("remotes") -remotes::install_github("insightsengineering/rlistings@*release") +install.packages("rlistings") ``` -The `rlistings` package was not a part of the October 2022 stable -release of all `NEST` packages, but the list of these `NEST` packages is -available -[here](https://github.com/insightsengineering/depository#readme). +or you can install the latest development version directly from GitHub +with: -See [the Get started -page](https://insightsengineering.github.io/rlistings/main/articles/rlistings.html) -for an introduction to creating listings using this package. +``` r +remotes::install_github("insightsengineering/formatters") +remotes::install_github("insightsengineering/rlistings") +``` + +Note you might need to set your `GITHUB_PAT` environment variable in +order to be able to install from GitHub. + +Packaged releases (both those on CRAN and those between official CRAN +releases) can be found in the [releases +list](https://github.com/insightsengineering/rlistings/releases). ## Usage