-
%Y,%F,%G, and%cnow parse up to 4 characters by default, rather
than 4 digits. This is more in line with the C++20 specification and was a
change made in the upstream<date.h>parser. Practically, this means that
negative years such as-1000-01-01will no longer parse with%Y-%m-%d, and
instead requires%5Y-%m-%dto capture the leading-(#387). -
tzdb >=0.5.0 is required. Note that older versions of clock are not compatible
with tzdb 0.5.0 and above, so if you are having issues (particularly with
parsing) please make sure that both clock and tzdb are fully updated (#387). -
Fixed
-Wdeprecated-literal-operatorreported by clang (#386,
@MichaelChirico). -
R >=4.0.0 is now required. This is consistent with the standards of the
tidyverse.