Skip to content

Commit

Permalink
Release v0.2.2 [skip vbump] (#125)
Browse files Browse the repository at this point in the history
Closes #123
  • Loading branch information
edelarua authored May 18, 2023
1 parent 64710c5 commit 3b2427b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 18 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", , "[email protected]", role = c("aut", "cre")),
Expand All @@ -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:
Expand Down
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -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`,
Expand Down
31 changes: 16 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3b2427b

Please sign in to comment.