Skip to content

Commit

Permalink
feat(commit): make the fields of Signature public
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Mar 30, 2023
1 parent 0e710c2 commit 104aac9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions git-cliff-core/src/commit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ impl<'a> From<&'a ConventionalFooter<'a>> for Footer<'a> {
)]
pub struct Signature {
/// Name on the signature.
name: Option<String>,
pub name: Option<String>,
/// Email on the signature.
email: Option<String>,
pub email: Option<String>,
/// Time of the signature.
timestamp: i64,
pub timestamp: i64,
}

impl<'a> From<CommitSignature<'a>> for Signature {
Expand Down

0 comments on commit 104aac9

Please sign in to comment.