From b78e498f07999ceeb04952f6d7f0edbbd2a95f2a Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Tue, 2 Jul 2019 08:33:05 -0500 Subject: [PATCH] update deprecation warning --- lib/marked.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/marked.js b/lib/marked.js index 7aff264309..dac7f65ae6 100644 --- a/lib/marked.js +++ b/lib/marked.js @@ -1538,7 +1538,7 @@ function findClosingBracket(str, b) { function checkSanitizeDeprecation(opt) { if (opt && opt.sanitize && !opt.silent) { - console.warn('marked(): sanitize and sanitizer parameters are deprecated since version 0.6.3, should not be used and will be removed in the next major version. Read more here: https://marked.js.org/#/USING_ADVANCED.md#options'); + console.warn('marked(): sanitize and sanitizer parameters are deprecated since version 0.7.0, should not be used and will be removed in the future. Read more here: https://marked.js.org/#/USING_ADVANCED.md#options'); } }