From f6579cc7016ad2fbc19fcb6f38d0c58412cccf85 Mon Sep 17 00:00:00 2001 From: vagudets Date: Fri, 6 Sep 2024 15:00:00 +0200 Subject: [PATCH 1/2] Update NEWS.md and DESCRIPTION --- DESCRIPTION | 6 +++--- NEWS.md | 7 +++++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 88bfb62..35bb1b9 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,12 +1,12 @@ Package: startR Title: Automatically Retrieve Multidimensional Distributed Data Sets -Version: 2.3.1 +Version: 2.4.0 Authors@R: c( person("Nicolau", "Manubens", , "nicolau.manubens@bsc.es", role = c("aut")), - person("An-Chi", "Ho", , "an.ho@bsc.es", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-4182-5258")), + person("An-Chi", "Ho", , "an.ho@bsc.es", role = c("aut"), comment = c(ORCID = "0000-0002-4182-5258")), person("Nuria", "Perez-Zanon", , "nuria.perez@bsc.es", role = c("aut"), comment = c(ORCID = "0000-0001-8568-3071")), person("Eva", "Rifa", , "eva.rifarovira@bsc.es", role = "ctb"), - person("Victoria", "Agudetse", , "victoria.agudetse@bsc.es", role = "ctb"), + person("Victoria", "Agudetse", , "victoria.agudetse@bsc.es", role = c("cre", "ctb")), person("Bruno", "de Paula Kinoshita", , "bruno.depaulakinoshita@bsc.es", role = "ctb"), person("Javier", "Vegas", , "javier.vegas@bsc.es", role = c("ctb")), person("Pierre-Antoine", "Bretonniere", , "pierre-antoine.bretonniere@bsc.es", role = c("ctb")), diff --git a/NEWS.md b/NEWS.md index c19d7a3..013d39f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,10 @@ +# startR v2.4.0 (Release date: ) +- Allow chunking along inner dimensions that go across file dimensions +- Allow more than one file dimension to be specified in "metadata_dims" +- Add check and warning for when special wildcard "$var$" is missing in the path +- Bugfix: Start() retrieve correct time steps when time is across file dimension and the time steps of the first files are skipped +- Bugfix: Generate correct file paths when a file dimension has multiple depending dimensions + # startR v2.3.1 (Release date: 2023-12-22) - Use Autosubmit as workflow manager on hub - New feature: Collect result by Collect() on HPCs -- GitLab From 3da36cc972006a717f96f623d4f05e137485773e Mon Sep 17 00:00:00 2001 From: vagudets Date: Fri, 6 Sep 2024 15:00:12 +0200 Subject: [PATCH 2/2] Ignore tests to build for CRAN --- .Rbuildignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.Rbuildignore b/.Rbuildignore index 39771b3..aa7059a 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -9,7 +9,7 @@ ^inst/doc$ ^\.gitlab-ci\.yml$ ## unit tests should be ignored when building the package for CRAN -# ^tests$ +^tests$ ^inst/PlotProfiling\.R$ ^.gitlab$ # Suggested by http://r-pkgs.had.co.nz/package.html -- GitLab