Skip to content

Commit

Permalink
Merge pull request #273 from pharmaverse/272_release_1_0_0
Browse files Browse the repository at this point in the history
Closes # 272 release_1_0_0: Updates for 1.0.0 release
  • Loading branch information
bundfussr authored Dec 19, 2023
2 parents 8bd0fff + 2c11edf commit 374ff1f
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 103 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,6 @@ jobs:
needs: get_r_version
with:
r-version: "${{ needs.get_r_version.outputs.r-version }}"
readme:
name: Render README
uses: pharmaverse/admiralci/.github/workflows/readme-render.yml@main
if: github.event_name == 'push'
needs: get_r_version
with:
r-version: "${{ needs.get_r_version.outputs.r-version }}"
validation:
name: Validation
uses: pharmaverse/admiralci/.github/workflows/r-pkg-validation.yml@main
Expand Down
8 changes: 5 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: admiralonco
Type: Package
Title: Oncology Extension Package for ADaM in 'R' Asset Library
Version: 0.5.0.9001
Version: 1.0.0
Authors@R: c(
person("Stefan", "Bundfuss", email = "[email protected]", role = c("aut", "cre")),
person("Ross", "Farrugia", role = "aut"),
Expand All @@ -12,6 +12,8 @@ Authors@R: c(
person("Stephen", "Gormley", role = "aut"),
person("Hinal", "Patel", role = "aut"),
person("Vinh", "Nguyen", role = "aut"),
person("Olga", "Starostecka", role = "ctb"),
person("Uwe", "Bader", role = "ctb"),
person("Karl", "Kennedy", role = "ctb"),
person("Edoardo", "Mancini", role = "ctb"),
person("Matt", "Marino", role = "ctb"),
Expand Down Expand Up @@ -45,8 +47,8 @@ Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Depends: R (>= 3.5)
Imports:
admiral (>= 0.12.0),
admiraldev (>= 0.4.0),
admiral (>= 1.0.0),
admiraldev (>= 1.0.0),
dplyr (>= 0.8.4),
lifecycle (>= 0.1.0),
lubridate (>= 1.7.4),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# admiralonco (development version)
# admiralonco 1.0.0

## Updates of Existing Functions

Expand Down
78 changes: 0 additions & 78 deletions README.Rmd

This file was deleted.

29 changes: 15 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
<!-- Please do not edit the README.md file as it is auto-generated after PR merges. Only edit the README.Rmd file -->
<!-- To test this in your feature branch use code: rmarkdown::render("README.Rmd", output_format ="md_document") -->

# admiralonco <img src="man/figures/logo.png" align="right" width="200" style="margin-left:50px;"/>

<!-- badges: start -->
Expand All @@ -19,19 +16,24 @@ to develop oncology disease area specifics.

## Installation

The package is available from CRAN and can be installed by running
`install.packages("admiralonco")`.
The package is available from CRAN and can be installed with:

```r
install.packages("admiralonco")
```

To install the latest development version of the package directly from
GitHub use the following code:

if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}
```r
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}

remotes::install_github("pharmaverse/admiraldev", ref = "devel") # This is a required dependency of {admiralonco}
remotes::install_github("pharmaverse/admiral", ref = "devel") # This is a required dependency of {admiralonco}
remotes::install_github("pharmaverse/admiralonco", ref = "devel")
remotes::install_github("pharmaverse/admiraldev") # This is a required dependency of {admiralonco}
remotes::install_github("pharmaverse/admiral") # This is a required dependency of {admiralonco}
remotes::install_github("pharmaverse/admiralonco")
```

### Dependencies

Expand Down Expand Up @@ -73,10 +75,9 @@ Here’s a summary of our strategy for this package related to R versions:

- R versions for developers and users will follow the same as
`{admiral}` core package.
- For development the `devel` branch of `{admiral}` core is used as a
- For development the `main` branch of `{admiral}` core is used as a
dependency. For releasing a new `{admiralonco}` version it must run
using the latest released `{admiral}` core version, i.e., `main`
branch of `{admiral}` core.
using the latest released `{admiral}` core version.

## Contact

Expand Down
2 changes: 2 additions & 0 deletions man/admiralonco-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 374ff1f

Please sign in to comment.