From d68eb120c0a0a98bc1e7264a3aede17b5f5c54be Mon Sep 17 00:00:00 2001 From: Marco Ieni <11428655+MarcoIeni@users.noreply.github.com> Date: Sun, 13 Mar 2022 13:48:49 +0100 Subject: [PATCH] docs(core): document timestamp format of `Release` struct (#67) --- git-cliff-core/src/release.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-cliff-core/src/release.rs b/git-cliff-core/src/release.rs index 947f8f0b61..9709b823b0 100644 --- a/git-cliff-core/src/release.rs +++ b/git-cliff-core/src/release.rs @@ -11,7 +11,7 @@ pub struct Release<'a> { /// Commit ID of the tag. #[serde(rename = "commit_id")] pub commit_id: Option, - /// Timestamp of the release. + /// Timestamp of the release in seconds, from epoch. pub timestamp: i64, /// Previous release. pub previous: Option>>,