Skip to content

Commit

Permalink
Merge pull request uutils#5970 from cakebaker/ls_date_rename_duration…
Browse files Browse the repository at this point in the history
…_to_time_delta

ls,date: rename `chrono::Duration` to `chrono::TimeDelta`
  • Loading branch information
sylvestre authored Feb 11, 2024
2 parents 38a8de8 + 120a0e0 commit b4c8a1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/uu/date/src/date.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// spell-checker:ignore (chrono) Datelike Timelike ; (format) DATEFILE MMDDhhmm ; (vars) datetime datetimes

use chrono::format::{Item, StrftimeItems};
use chrono::{DateTime, Duration, FixedOffset, Local, Offset, Utc};
use chrono::{DateTime, FixedOffset, Local, Offset, TimeDelta, Utc};
#[cfg(windows)]
use chrono::{Datelike, Timelike};
use clap::{crate_version, Arg, ArgAction, Command};
Expand Down Expand Up @@ -91,7 +91,7 @@ enum DateSource {
Now,
Custom(String),
File(PathBuf),
Human(Duration),
Human(TimeDelta),
}

enum Iso8601Format {
Expand Down
2 changes: 1 addition & 1 deletion src/uu/ls/src/ls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2981,7 +2981,7 @@ fn display_date(metadata: &Metadata, config: &Config) -> String {
Some(time) => {
//Date is recent if from past 6 months
//According to GNU a Gregorian year has 365.2425 * 24 * 60 * 60 == 31556952 seconds on the average.
let recent = time + chrono::Duration::seconds(31_556_952 / 2) > chrono::Local::now();
let recent = time + chrono::TimeDelta::seconds(31_556_952 / 2) > chrono::Local::now();

match &config.time_style {
TimeStyle::FullIso => time.format("%Y-%m-%d %H:%M:%S.%f %z"),
Expand Down

0 comments on commit b4c8a1a

Please sign in to comment.