diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-03 11:17:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-03 11:17:14 +0200 |
commit | 8bae6cd94035cd5999ff2d767d91e176939ba203 (patch) | |
tree | 2c92af9548d5be75cc349aa61dbfd7085f227684 /NEWS | |
parent | d55690a09ccc86b6ec285c9af2ab4f1921e84baf (diff) |
Allow unseparated scope-qualified variable assignment and expansion
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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. |