From 8bae6cd94035cd5999ff2d767d91e176939ba203 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 3 May 2021 11:17:14 +0200 Subject: Allow unseparated scope-qualified variable assignment and expansion --- NEWS | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 5999e49..2f64076 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,21 @@ +Version 0.14.0 + + * Allow unseparated scope-qualified variable assignment and expansion. + + For example, now the following: + + foo/x = y + info $(foo/x) + + Is equivalent to: + + foo/ x = y + info $(foo/ x) + + While this makes scope-qualified syntax consistent with target-qualified, + it also means that variable names that contain directory separators are + now effectively reserved. + Version 0.13.0 * Support for project-specific configuration. -- cgit v1.1