summaryrefslogtreecommitdiffstats
path: root/tasks/rake
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/rake')
-rw-r--r--tasks/rake/changelog.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/rake/changelog.rake b/tasks/rake/changelog.rake
index b39fe87e8..0c2f1d26c 100644
--- a/tasks/rake/changelog.rake
+++ b/tasks/rake/changelog.rake
@@ -8,7 +8,7 @@ task :changelog do
CHANGELOG_DIR = "#{Dir.pwd}"
mkdir(CHANGELOG_DIR) unless File.directory?(CHANGELOG_DIR)
- change_body = `git-changelog --no-limit`
+ change_body = `git-changelog --limit=99999`
File.open(File.join(CHANGELOG_DIR, "CHANGELOG"), 'w') do |f|
f << change_body
end