implement a few deprecations and expand the strtime conversion specifiers #208
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In brief, we:
intz
methods in favor ofin_tz
.Eq
andPartialEq
trait implementations onSpan
infavor of calling
span.fieldwise()
to get aSpanFieldwise
that implementsEq
andPartialEq
.Span
APIs that days are always 24hours. Instead, callers must either provide a relative reference time or
provide the new special
SpanRelativeTo::days_are_24_hours()
marker.%V
in favor of%Q
for IANA time zone identifiers instrftime
and
strptime
APIs.strftime
andstrptime
in near-parity with GNU's implementation. We leave out localespecific specifiers (because Jiff doesn't do locale, use
icu
for that)and
%V
for ISO 8601 week numbers. We'll add%V
for this injiff 0.2
since it's a breaking change. (Hence the aforementioned deprecation.)
See the commit messages and their linked issues for more details.