From a92e5d97e07733a4a8fb287975a6abecedeeffe9 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 15 Nov 2020 02:59:54 -0500 Subject: [PATCH] don't threaten to remove ncplane_new() #1115 --- NEWS.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NEWS.md b/NEWS.md index a825be87c..e62b281c0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -5,10 +5,10 @@ rearrangements of Notcurses. * The `horiz` union of `ncplane_options` has been discarded; the `int x` within has been promoted. This union brought no actual type safety, and was annoying for callers to deal with otherwise. Sorry for the inconvenience. - * As promised, `ncplane_new()` has been marked as deprecated. It will be - removed in 3.0. Use the strictly more powerful `ncplane_create()` instead, - with its self-documenting `struct ncplane_options` argument. So long as - the arguments to `ncplane_new()` do not have side-effects, calls can be + * As promised, `ncplane_new()` has been marked as deprecated. You should use + the strictly more powerful `ncplane_create()` instead, with its + self-documenting `struct ncplane_options` argument. So long as the + arguments to `ncplane_new()` do not have side-effects, calls can be mechanically translated to their `ncplane_create()` equivalents. * 2.0.4 (2020-11-10)