fastlane/lib/fastlane/helper/git_helper.rb in fastlane-2.100.1 vs fastlane/lib/fastlane/helper/git_helper.rb in fastlane-2.101.0
- old
+ new
@@ -40,9 +40,10 @@
def self.last_git_commit_dict
return nil if last_git_commit_formatted_with('%an').nil?
{
author: last_git_commit_formatted_with('%an'),
+ author_email: last_git_commit_formatted_with('%ae'),
message: last_git_commit_formatted_with('%B'),
commit_hash: last_git_commit_formatted_with('%H'),
abbreviated_commit_hash: last_git_commit_formatted_with('%h')
}
end