diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-08-03 19:54:34 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-08-03 19:54:52 +0200 |
| commit | 10ac38ed9f3be17a09f39a801616bdf57f7edecc (patch) | |
| tree | 7fee81ceb291c7b3484614042961a6335e7b1f04 /doc | |
| parent | Merge pull request #6356 (diff) | |
| parent | doc: mention change to option parsing behavior in release notes (diff) | |
| download | discoin-10ac38ed9f3be17a09f39a801616bdf57f7edecc.tar.xz discoin-10ac38ed9f3be17a09f39a801616bdf57f7edecc.zip | |
Merge pull request #6284
c6455c7 doc: mention change to option parsing behavior in release notes (Wladimir J. van der Laan)
c38c49d Fix argument parsing oddity with -noX (Wladimir J. van der Laan)
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/release-notes.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md index 7480a7cd2..db6c28972 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -27,6 +27,14 @@ Low-level RPC API changes advantage if a JSON library insists on using a lossy floating point type for numbers, which would be dangerous for monetary amounts. +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. + 0.12.0 Change log ================= |