Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
sosorior committed Oct 24, 2024
1 parent ca480a5 commit 3199ba0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 17 deletions.
3 changes: 2 additions & 1 deletion .buildlibrary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ValidationKey: '53076105'
ValidationKey: '53453400'
AcceptedWarnings:
- 'Warning: package ''.*'' was built under R version'
- 'Warning: namespace ''.*'' is not available and has been replaced'
Expand All @@ -8,3 +8,4 @@ AcceptedNotes:
AutocreateReadme: yes
allowLinterWarnings: yes
enforceVersionUpdate: no
skipCoverage: no
18 changes: 9 additions & 9 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
any::lucode2
any::covr
any::madrat
any::magclass
any::citation
any::gms
any::goxygen
any::GDPuc
lucode2
covr
madrat
magclass
citation
gms
goxygen
GDPuc
# piam packages also available on CRAN (madrat, magclass, citation,
# gms, goxygen, GDPuc) will usually have an outdated binary version
# available; by using extra-packages we get the newest version
Expand Down Expand Up @@ -63,6 +63,6 @@ jobs:
shell: Rscript {0}
run: |
nonDummyTests <- setdiff(list.files("./tests/testthat/"), c("test-dummy.R", "_snaps"))
if(length(nonDummyTests) > 0) covr::codecov(quiet = FALSE)
if(length(nonDummyTests) > 0 && !lucode2:::loadBuildLibraryConfig()[["skipCoverage"]]) covr::codecov(quiet = FALSE)
env:
NOT_CRAN: "true"
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ cff-version: 1.2.0
message: If you use this software, please cite it using the metadata from this file.
type: software
title: 'limes: The liMES R package'
version: 2.65.5
date-released: '2024-09-25'
version: 2.67.0
date-released: '2024-10-24'
abstract: Contains the LIMES-specific routines for data and model output manipulation.
authors:
- family-names: Osorio
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Type: Package
Package: limes
Title: The liMES R package
Version: 2.65.5
Date: 2024-09-25
Version: 2.67.0
Date: 2024-10-24
Authors@R:
person("Sebastian", "Osorio", , "sebastian.osorio@pik-potsdam.de", role = c("aut", "cre"))
Description: Contains the LIMES-specific routines for data and model
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The liMES R package

R package **limes**, version **2.65.5**
R package **limes**, version **2.67.0**

[![CRAN status](https://www.r-pkg.org/badges/version/limes)](https://cran.r-project.org/package=limes) [![R build status](https://github.com/pik-piam/limes/workflows/check/badge.svg)](https://github.com/pik-piam/limes/actions) [![codecov](https://codecov.io/gh/pik-piam/limes/branch/master/graph/badge.svg)](https://app.codecov.io/gh/pik-piam/limes) [![r-universe](https://pik-piam.r-universe.dev/badges/limes)](https://pik-piam.r-universe.dev/builds)

Expand Down Expand Up @@ -47,7 +47,7 @@ In case of questions / problems please contact Sebastian Osorio <sebastian.osori

To cite package **limes** in publications use:

Osorio S (2024). _limes: The liMES R package_. R package version 2.65.5.
Osorio S (2024). _limes: The liMES R package_. R package version 2.67.0.

A BibTeX entry for LaTeX users is

Expand All @@ -56,6 +56,6 @@ A BibTeX entry for LaTeX users is
title = {limes: The liMES R package},
author = {Sebastian Osorio},
year = {2024},
note = {R package version 2.65.5},
note = {R package version 2.67.0},
}
```

0 comments on commit 3199ba0

Please sign in to comment.