From 4a8fb923c4d94de2483eb614faa1b75b30b3e808 Mon Sep 17 00:00:00 2001 From: nikosbosse Date: Fri, 24 Nov 2023 10:17:11 +0100 Subject: [PATCH] Remove specific date from the package startup message --- R/zzz.R | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/R/zzz.R b/R/zzz.R index e89e0dfbb..1c6f431e7 100644 --- a/R/zzz.R +++ b/R/zzz.R @@ -1,8 +1,9 @@ .onAttach <- function(libname, pkgname) { packageStartupMessage( "Note: scoringutils is currently undergoing major development changes ", - "(with an update planned for February 1st, 2024). We would very much ", - "appreciate your opinions and feedback on what should be included in this ", - "major update: https://github.com/epiforecasts/scoringutils/discussions/333" + "(with an update planned for the first quarter of 2024). We would very ", + "much appreciate your opinions and feedback on what should be included in ", + "this major update: ", + "https://github.com/epiforecasts/scoringutils/discussions/333" ) }