diff --git a/CHANGELOG.md b/CHANGELOG.md index d8537f3ada..dbcde41862 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixes * respect configuration for remote when fetching (also applies to pulling) [[@cruessler](https://github.com/cruessler)] ([#1093](https://github.com/extrawurst/gitui/issues/1093)) +* add `:` character to sign-off trailer to comply with Conventinoal Commits standard [@semioticrobotic](https://github.com/semioticrobotic) ([#2196](https://github.com/extrawurst/gitui/issues/2196)) ## [0.26.0+1] - 2024-04-14 diff --git a/src/popups/commit.rs b/src/popups/commit.rs index 9bd4806989..0b9a1958fe 100644 --- a/src/popups/commit.rs +++ b/src/popups/commit.rs @@ -470,7 +470,7 @@ impl CommitPopup { let mut msg = msg.to_owned(); if let (Some(user), Some(mail)) = (user, mail) { msg.push_str(&format!( - "\n\nSigned-off-by {user} <{mail}>" + "\n\nSigned-off-by: {user} <{mail}>" )); }