You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While tracking down what's been changed in the latest release, I noticed the dates are incorrectly formatted. As this project uses the format suggested by Keep a Changelog, it should be using ISO formatted dates -- YYYY-MM-DD. Instead, the month and day appear to be flipped.
From Keep a Changelog:
Confusing Dates
Regional date formats vary throughout the world and it's often difficult to find a human-friendly date format that feels intuitive to everyone. The advantage of dates formatted like 2017-07-17 is that they follow the order of largest to smallest units: year, month, and day. This format also doesn't overlap in ambiguous ways with other date formats, unlike some regional formats that switch the position of month and day numbers. These reasons, and the fact this date format is an ISO standard, are why it is the recommended date format for changelog entries.
The text was updated successfully, but these errors were encountered:
According to new things:
See what's possible now 😄 ->
use tabled::Tabled;#[derive(Tabled)]#[tabled(display(Option,"tabled::derive::display::option","NONE"))]pubstructCountry{name:String,capital:Option<String>,gdp_per_capita:Option<usize>,}
While tracking down what's been changed in the latest release, I noticed the dates are incorrectly formatted. As this project uses the format suggested by Keep a Changelog, it should be using ISO formatted dates -- YYYY-MM-DD. Instead, the month and day appear to be flipped.
From Keep a Changelog:
The text was updated successfully, but these errors were encountered: