diff options
author | Michael Budde <mbudde@gmail.com> | 2019-03-31 13:18:09 +0200 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2019-04-02 11:56:27 +0700 |
commit | c4eab0007a788703bc63db82fd995ef646820529 (patch) | |
tree | 5e1c69743d65eeb949a60279efca64cece486b05 /doc | |
parent | 928fe50958f980d3ff92f54abe07dd97d53e2279 (diff) | |
download | fork-ledger-c4eab0007a788703bc63db82fd995ef646820529.tar.gz fork-ledger-c4eab0007a788703bc63db82fd995ef646820529.tar.bz2 fork-ledger-c4eab0007a788703bc63db82fd995ef646820529.zip |
Add support for '%F' date format specifier
'%F' is equivalent to '%Y-%m-%d'. Using the '%F' format without this
change this would not give any hard errors but instead give dates with
wrong years because the 'has_year' trait would not be correctly
detected and thus parsed dates would get set to the current year.
Fixes #1775
Diffstat (limited to 'doc')
-rw-r--r-- | doc/NEWS.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/NEWS.md b/doc/NEWS.md index 76f4d983..1d1e618d 100644 --- a/doc/NEWS.md +++ b/doc/NEWS.md @@ -1,5 +1,9 @@ # Ledger NEWS +## 3.1.4 (unreleased) + +- Add support for '%F' date format specifier (bug #1775) + ## 3.1.3 (2019-03-31) - Properly reject postings with a comment right after the flag (bug #1753) |