From e4b79e75ca68122e7dbf4e85c7fec9100dd1c971 Mon Sep 17 00:00:00 2001 From: sugamasao Date: Sat, 17 Jan 2015 10:28:31 +0900 Subject: [PATCH] fix link tag format Remove Extra Space. --- lib/github_changelog_generator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/github_changelog_generator.rb b/lib/github_changelog_generator.rb index 646c20f..dcf2e16 100755 --- a/lib/github_changelog_generator.rb +++ b/lib/github_changelog_generator.rb @@ -321,7 +321,7 @@ module GitHubChangelogGenerator github_site = options[:github_site] || 'https://github.com' # Generate tag name and link - log = "## [#{tag_name}] (#{github_site}/#{@options[:user]}/#{@options[:project]}/tree/#{tag_name})\n" + log = "## [#{tag_name}](#{github_site}/#{@options[:user]}/#{@options[:project]}/tree/#{tag_name})\n" #Generate date string: time_string = tag_time.strftime @options[:format]