doc: mention change to option parsing behavior in release notes

This commit is contained in:
Wladimir J. van der Laan 2015-07-27 14:54:53 +02:00 committed by Jack Grigg
parent 5514316892
commit 921e9a2e53
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
1 changed files with 7 additions and 0 deletions

View File

@ -4,3 +4,10 @@ release-notes at release time)
Notable changes
===============
Option parsing behavior
-----------------------
Command line options are now parsed strictly in the order in which they are
specified. It used to be the case that `-X -noX` ends up, unintuitively, with X
set, as `-X` had precedence over `-noX`. This is no longer the case. Like for
other software, the last specified value for an option will hold.