We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a75b1 commit 8c85bd7Copy full SHA for 8c85bd7
NEWS.md
@@ -1,5 +1,9 @@
1
# linelist (development version)
2
3
+## Minor change
4
+
5
+* Convert `meta$Date` in CITATION to `Date` before attempting to run `format()` (@Bisaloo, #125)
6
7
# linelist 1.1.2
8
9
## Minor change
inst/CITATION
@@ -11,7 +11,7 @@ if (length(author)) {
11
if (is.null(meta$Date)) {
12
date <- format(Sys.Date(), "%Y")
13
} else {
14
- date <- format(meta$Date, "%Y")
+ date <- format(as.Date(meta$Date), "%Y")
15
}
16
17
bibentry(
0 commit comments