add a NEWS note for new args syntax
diff --git a/Misc/NEWS b/Misc/NEWS
index 627ce44..daba284 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 Core and Builtins
 -----------------
 
+- Keyword arguments can now follow starred arguments. (``f(a, *args,
+  keyword=23)`` is now valid syntax.)
+
 - ctypes function pointers that are COM methods have a boolean True
   value again.