Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 5.1.2 #578

Merged
merged 6 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: esqlabsR
Title: esqLABS utilities package
Version: 5.1.1.9000
Version: 5.1.2
Authors@R: c(
person("esqLABS GmbH", role = c("cph", "fnd")),
person("Pavel", "Balazki", , "pavel.balazki@esqlabs.com", role = c("cre", "aut"),
Expand Down Expand Up @@ -62,8 +62,8 @@ Encoding: UTF-8
Language: en-US
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Remotes:
github::Open-Systems-Pharmacology/OSPSuite.RUtils,
github::Open-Systems-Pharmacology/TLF-Library,
github::Open-Systems-Pharmacology/OSPSuite-R,
github::Open-Systems-Pharmacology/OSPSuite.ParameterIdentification
Remotes:
Open-Systems-Pharmacology/OSPSuite.RUtils@8790585,
Open-Systems-Pharmacology/TLF-Library@033b7f7,
Open-Systems-Pharmacology/OSPSuite-R@4ed57da,
Open-Systems-Pharmacology/ospsuite.parameteridentification@0f675cc
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# esqlabsR (development version)
# esqlabsR 5.1.2

## Minor improvements and bug fixes

Expand All @@ -8,6 +8,8 @@
aggregation methods. A new column `nsd` was added to the `PlotConfiguration`
sheet in the example `Plot.xlsx` (\#544, @Felixmil).
- Documentation includes PK-Sim installation instructions (\#537, @Felixmil).
- Better error message if some ids are not uniques in the excel configuration files (\#568, @Felixmil)
- Handles better empty rows in the excel configuration files (\#569, @Felixmil)
- Cleaner NEWS file (\#527).

# esqlabsR 5.1.1
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ environment:
R_ARCH: x64
KEEP_VIGNETTES: 'true'
NOT_CRAN: 'true'
app_version: 5.1.1.9000
app_version: 5.1.2
version: $(app_version)-{build}
before_build: rake "prepare_for_build[%APPVEYOR_BUILD_VERSION%]"
platform: x64
Expand Down
File renamed without changes.
21 changes: 4 additions & 17 deletions release-process.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ desc::desc_set_remotes(
# Update the commits id after the `@` in the folowing vector with the latest
# commits identifiers that passed checks in main development branches
c(
"Open-Systems-Pharmacology/OSPSuite.RUtils@8790585c38ed02710a918738866c164621bc2ce2",
"Open-Systems-Pharmacology/TLF-Library@bfce0e5bb7bb19db0b114d4bcd408eb2d94197e1",
"Open-Systems-Pharmacology/OSPSuite-R@55531ffb8d1b9a20fca533fa89909db50cff0b0b",
"Open-Systems-Pharmacology/ospsuite.parameteridentification@7bd8b45ca02235b61a74c6997bb9ac7031500115"
"Open-Systems-Pharmacology/OSPSuite.RUtils@8790585",
"Open-Systems-Pharmacology/TLF-Library@033b7f7",
"Open-Systems-Pharmacology/OSPSuite-R@4ed57da",
"Open-Systems-Pharmacology/ospsuite.parameteridentification@0f675cc"
)
)

Expand All @@ -66,12 +66,6 @@ devtools::document()
gert::git_add(files = "man")
gert::git_commit("devtools::document()")

## Build pkgdown site
pkgdown::build_site(devel = FALSE)

## Commit and push docs
gert::git_add(files = "docs")
gert::git_commit("pkgdown::build_site(devel = FALSE)")

## Push branch to remote
usethis::pr_push()
Expand Down Expand Up @@ -145,12 +139,5 @@ devtools::document()
gert::git_add(files = "man")
gert::git_commit("devtools::document()")

## Build pkgdown site
pkgdown::build_site(devel = TRUE)

## Commit and push docs
gert::git_add(files = "docs/dev")
gert::git_commit("pkgdown::build_site(devel = TRUE)")

## Push to main branch directly
usethis::pr_push()