Skip to content

Commit d7789b3

Browse files
authored
Merge pull request #15 from PetterHopp/main
NVIpjsr v0.1.2
2 parents fe58286 + 8daa512 commit d7789b3

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: NVIpjsr
22
Title: Tools to facilitate working with PJS data
3-
Version: 0.1.1
4-
Date: 2024-08-19
3+
Version: 0.1.2
4+
Date: 2024-08-20
55
Authors@R: c(
66
person("Petter", "Hopp", , "Petter.Hopp@vetinst.no", role = c("aut", "cre"),
77
comment = c(ORCID = "0000-0002-8695-0378")),

NEWS.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
# NVIpjsr 0.1.1 - (2024-08-19)
1+
# NVIpjsr 0.1.2 - (2024-08-20)
22

3-
## New features:
3+
## Bug fixes:
4+
5+
- removed error for `retrieve_PJSdata` when no additional arguments.
46

5-
-
67

8+
# NVIpjsr 0.1.1 - (2024-08-20)
79

810
## Bug fixes:
911

@@ -23,11 +25,6 @@
2325
- simplified code for some functions.
2426

2527

26-
## BREAKING CHANGES:
27-
28-
-
29-
30-
3128
# NVIpjsr 0.1.0 - (2024-05-03)
3229

3330
## First release

R/retrieve_PJSdata.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ retrieve_PJSdata <- function(year = NULL,
8484
# CAPTURE DOTS ----
8585
# Used below to ensure correct arguments for nested functions
8686
dots <- list(...)
87+
if (length(dots) == 0) {dots <- list(NULL)}
8788

8889
# ARGUMENT CHECKING ----
8990
# Object to store check-results

0 commit comments

Comments
 (0)