diff --git a/NEWS b/NEWS index 1ecb47ad9..31f2b37b2 100644 --- a/NEWS +++ b/NEWS @@ -20,6 +20,7 @@ Newly Deprecated Features in Taskwarrior 2.6.0 - The use of alternate Boolean configuration settings is deprecated. Use values "0" for off, and "1" for on. Avoid used of "on", "off", "true", "t", "false", "f", "yes", "y", "no", "n". + - The 'PARENT' and 'CHILD' virtual tags are replaced by 'TEMPLATE' and 'INSTANCE'. Removed Features in 2.6.0 diff --git a/src/feedback.cpp b/src/feedback.cpp index ba1b2d2b2..cb6ed9264 100644 --- a/src/feedback.cpp +++ b/src/feedback.cpp @@ -318,22 +318,24 @@ void feedback_reserved_tags (const std::string& tag) tag == "ANNOTATED" || tag == "BLOCKED" || tag == "BLOCKING" || - tag == "CHILD" || + tag == "CHILD" || // Deprecated 2.6.0 tag == "COMPLETED" || tag == "DELETED" || tag == "DUE" || tag == "DUETODAY" || + tag == "INSTANCE" || tag == "LATEST" || tag == "MONTH" || tag == "ORPHAN" || tag == "OVERDUE" || - tag == "PARENT" || + tag == "PARENT" || // Deprecated 2.6.0 tag == "PENDING" || tag == "PRIORITY" || tag == "PROJECT" || tag == "READY" || tag == "SCHEDULED" || tag == "TAGGED" || + tag == "TEMPLATE" || tag == "TODAY" || tag == "TOMORROW" || tag == "UDA" ||