diff --git a/NEWS b/NEWS index 7a30cb3ef..241bef52b 100644 --- a/NEWS +++ b/NEWS @@ -76,6 +76,8 @@ Newly deprecated features in taskwarrior 2.0.0 instead. - Use of 'export.ical.class' configuration variable. Value is now specified in the scripts/add-ons/export-ical.pl script. + - Use of 'report..limit' configuration variable. This is now handled + in the report filter as 'limit:'. --- diff --git a/src/legacy.cpp b/src/legacy.cpp index 857cdba65..c93c0bf74 100644 --- a/src/legacy.cpp +++ b/src/legacy.cpp @@ -146,8 +146,10 @@ std::string legacyCheckForDeprecatedVariables () it->first.substr (it->first.length () - 6) == ".limit") deprecated.push_back (it->first); - if (it->first == "echo.command" || - it->first == "edit.verbose") + if (it->first == "echo.command" || + it->first == "edit.verbose" || + it->first == "next" || + it->first == "export.ical.class") deprecated.push_back (it->first); }